Skip to content

isabella232/eslint-config-ory-am

 
 

Repository files navigation

ory.am/eslint-config-ory-am

Installation

Install ESLint and the our configuration.

npm install --save-dev eslint eslint-config-ory-am

Create a .eslintrc.json file in your root with the following content:

{
  "extends": [
    "eslint-config-ory-am",
  ],
  "env": {
    "node": true,
    "browser": true
  }
}

Add a linter script to your package.json. In the following example, all files in the src and test folder (and their subfolders) are checked:

{
  "scripts": {
    "lint": "eslint \"+(src|test)/**/*.js\" --fix"
  }
}

Watcher task

You can use chokidar-cli to add a task that lints your files on save. First install it:

npm install --save-dev chokidar-cli

Then add a watch script to your package.json. In the following example, chokidar will look for changes in any files in the src and test folder (and their subfolders):

{
  "scripts": {
    "lint": "eslint \"+(src|test)/**/*.js\" --fix",
    "lint:watch": "npm run watch:js -- -c \"npm run lint\"",
    "watch:js": "chokidar \"+(src|test)/**/*.js\" --initial"
  }
}

Usage with WebStorm

  • Import webstorm-code-style.xml in preferences Editor › Code Style › JavaScript.
  • Deactivate Unterminated statement inspection in preferences Editor › Inspections

About

The ESLint configuration used by Ory

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%