nearbeach / NearBeach

NearBeach is an open sourced project management tool, helping you keep track of your project. You can track requirements, projects and tasks
https://nearbeach.org
MIT License
163 stars 64 forks source link

(JS-0242) Use `const` declarations for variables that are never reassigned #673

Open robotichead opened 2 months ago

robotichead commented 2 months ago

Description

Variables that are never re-assigned a new value after their initial declaration should be declared with the const keyword. This prevents the programmer from erroneously re-assigning to a read-only variable, and informs those reading the code that a variable is a constant value.

Occurrences

There are 61 occurrences of this issue in the repository.

See all occurrences on DeepSource → app.deepsource.com/gh/nearbeach/NearBeach/issue/JS-0242/occurrences/

Vinayyy19 commented 2 months ago

I'm interested in working on this. Can you assign it to me ?

aidanjbennett commented 2 months ago

I am down to help with this issue. Can you assign me this issue.

RashmitTopG commented 1 month ago

Fixed the issue can you check it up.