diff --git a/README.md b/README.md index b9d6333..9b5280c 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,12 @@ ## Install -This module is for advanced users looking for a shareable configuration across projects for ESLint. +This module is standard in all P'unk Avenue [ApostropheCMS](https://apostrophecms.org) projects. It provides warnings of potential bugs and errors in your code. It is recommended for developers of all skill levels working with ApostropheCMS. In the project root directory run: ```bash -npm install eslint eslint-plugin-promise eslint-plugin-standard eslint-plugin-react eslint-config-standard eslint-config-punkave --save-dev +npm install eslint eslint-plugin-promise eslint-plugin-import +eslint-plugin-standard eslint-plugin-react eslint-config-standard eslint-config-punkave --save-dev ``` Also, add the following to `.eslintrc` in the root directory: @@ -16,6 +17,30 @@ Also, add the following to `.eslintrc` in the root directory: } ``` -## Other +## Editors -If you're using Atom as your editor you can install the [ESLint plugin](https://atom.io/packages/linter-eslint), which provides an interface for ESLint and this configuration. +If you're using Atom as your editor you can install the [ESLint plugin](https://atom.io/packages/linter-eslint), which provides an interface for ESLint and this configuration. [VSCode has similar features](https://github.com/Microsoft/vscode-eslint), this plugin may be installed in your editor already. + +## Running it manually + +Once you have installed all of the required npm packages and added your `.eslintrc` file, you can manually run: + +``` +npx eslint . +``` + +Some warnings, such as those about whitespace, can be fixed automatically: + +``` +npx eslint . --fix +``` + +## Making it mandatory: adding eslint to your tests + +You can add it to the `test` property in `package.json`, like this: + +``` +"test": "mocha && eslint .", +``` + +Then `npm test` will not pass unless eslint passes. Here we assume you also have `mocha` tests. But you could combine this with any test command, or have it as the only test command. `&&` means "do not continue unless the previous command succeeded." diff --git a/index.js b/index.js index 2bb3221..c1cc069 100644 --- a/index.js +++ b/index.js @@ -3,6 +3,7 @@ module.exports = { 'rules': { 'semi': ['error', 'always'], 'no-unused-vars': ['error', { 'varsIgnorePattern': 'apos', 'args': 'none', 'ignoreRestSiblings': true }], + 'import/no-extraneous-dependencies': 1, 'no-var': 'error' } };