I managed to disable the “camelcase” rule by going to the “linter-js-standard” package folder and adding the following line to the file node_modules/standard/eslintrc.json :
"rules": { "camelcase": [0] }
So the whole "eslintrc.json" looks like this:
{ "extends": ["standard", "standard-jsx"], "rules": { "camelcase": [0] } }
Just save or edit your .js file in Atom for the changes to take effect.
On my Linux desktop, the full path to eslintrc.json :
~/.atom/packages/linter-js-standard/node_modules/standard/eslintrc.json
Of course, when you update the "linter-js-standard" package in Atom, you will need to complete the above steps again.
To enable the camelcase rule, you can change the "camelcase" value to [2] instead of deleting the entire rule line:
"rules": { "camelcase": [2] }
source share