This package provides PresenceLearning's .eslintrc as an extensible shared config.
We export three ESLint configurations for your usage.
Our default export contains all of our ESLint rules, including EcmaScript 6+
and AngularJS. It requires eslint and eslint-plugin-angular.
npm install --save-dev eslint-config-presencelearning eslint-plugin-angular eslint- add
"extends": "presencelearning"to your .eslintrc. Example, your .eslintrc file should look like this: { "extends": "presencelearning" } - test by running
eslint <change-this-to-your-path-to-js-file>. Note that eslint must not be installed globally or you need to run./node_modules/.bin/eslint <change-this-to-your-path-to-js-file>
Lints ES6+ but does not lint AngularJS. Requires eslint.
npm install --save-dev eslint-config-presencelearning eslint- add
"extends": "presencelearning/base"to your .eslintrc
See PresenceLearnings Javascript styleguide and the ESlint config docs for more information.
Consider adding test cases if you're making complicated rules changes, like anything involving regexes. Perhaps in a distant future, we could use literate programming to structure our README as test cases for our .eslintrc?
You can run tests with npm test.
You can make sure this module lints with itself using npm run lint.