This repository centralizes the ESLint configuration used for Cordova's development.
@cordova/eslint-config
comes with all plugins configs and even eslint
itself. So all you need to do to get started is:
npm i -D @cordova/eslint-config
# In package.json
{
"scripts": {
"lint": "eslint ."
}
}
# In .eslintrc.yml
root: true
extends: '@cordova/eslint-config/node'
overrides:
- files: [spec/**/*.js]
extends: '@cordova/eslint-config/node-tests'
- files: [cordova-js-src/**/*.js]
extends: '@cordova/eslint-config/browser'
This package exposes the following shareable ESLint configurations:
For linting scripts intended to be run with Node.js.
For linting Jasmine tests of Cordova's Node.js scripts.
For linting cordova-style CommonJS modules intended to be run in the browser (before they are bundled).
For linting Jasmine tests of Cordova's browser code.