chore: added missing package repo & bug field (#1)

1 file changed
tree: ec43d6b5056cc6d654d648d8c4a719453d23e9f9
  1. lib/
  2. .asf.yaml
  3. .eslintrc.yml
  4. .gitignore
  5. browser-tests.js
  6. browser.js
  7. index.js
  8. LICENSE
  9. node-tests.js
  10. node.js
  11. package-lock.json
  12. package.json
  13. README.md
README.md

@cordova/eslint-config

This repository centralizes the ESLint configuration used for Cordova's development.

Installation

@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

Usage

# In package.json
{
  "scripts": {
    "eslint": "eslint ."
  }
}
# In .eslintrc.yml
root: true
extends: '@cordova/eslint-config/node'
# In spec/.eslintrc.yml
extends: '@cordova/eslint-config/node-tests'
# In cordova-js-src/.eslintrc.yml
extends: '@cordova/eslint-config/browser'

Reference

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.