Problem
Our current lint does not allow private_isArchived as a variable name because the current naming conventions only allow for camelCase, UPPER_CASE, and PascalCase. This causes us to have to manually ignore eslint whenever we are using this variable.
Solution
Update our ESLint rules to allow for variables prefixed by private_. The expected behavior is that anything after the private_ prefix should be camelCase. A sample PR that starts on this is here.
Issue Owner
Current Issue Owner: @abekkala
Problem
Our current lint does not allow
private_isArchivedas a variable name because the current naming conventions only allow forcamelCase,UPPER_CASE, andPascalCase. This causes us to have to manually ignore eslint whenever we are using this variable.Solution
Update our ESLint rules to allow for variables prefixed by
private_. The expected behavior is that anything after theprivate_prefix should be camelCase. A sample PR that starts on this is here.Issue Owner
Current Issue Owner: @abekkala