commit | a188008e4fbda4913e638957b731aad5cb68cec9 | [log] [tgz] |
---|---|---|
author | Norman Breau <norman@nbsolutions.ca> | Sun Feb 28 10:56:24 2021 -0400 |
committer | Norman Breau <norman@nbsolutions.ca> | Sun Feb 28 12:18:12 2021 -0400 |
tree | 21eaf1d55cc6362f1f9b110c2e46e4d6f81c431d | |
parent | ad40a1777d56da035730ff95079da0ded44432b2 [diff] |
dep: eslint@^7.20.0 eslint-plugin-import@^2.22.1
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:
@cordova/eslint-config/node
(or simply @cordova
)For linting scripts intended to be run with Node.js.
@cordova/eslint-config/node-tests
For linting Jasmine tests of Cordova's Node.js scripts.
@cordova/eslint-config/browser
For linting cordova-style CommonJS modules intended to be run in the browser (before they are bundled).
@cordova/eslint-config/browser-tests
For linting Jasmine tests of Cordova's browser code.