Disable a specific linter rule in Atom (for js-standard)
For the record, here's how to use js-standard
in Atom while selectively disabling a certain rule.
Disable the
linter-js-standard
Atom packageInstall
linter-eslint
Add an
.eslintrc
file:{ "extends": ["standard"], "rules": { "camelcase": 0 } }
You may also need to install standard
and eslint
via npm
, if you don't have them already.