eslint-config-medishare

1.0.2 • Public • Published

eslint

Instructions for adding Medi-Share lint standards to a project:

npm install --save-dev eslint-config-medishare eslint lint-staged pre-commit

Add these objects to the package.json:

"scripts": {
  "lint-staged": "lint-staged"
},
"lint-staged": {
  "*.js": "eslint"
},
"pre-commit": "lint-staged",

This will setup a pre-commit hook that will lint all staged files with the js ext.

Add an .eslintrc file in project root with format:

{
  "extends": "medishare",
  "root": true,
  "globals": {},
  "rules": {},
}

Globals is where global variables can be exposed to eslint ex. "document": true will expose the document variable that is present in the browser so that code references to it will not be flagged.
Rules is where project specific rules and overrides are declared ex. "jsx-a11y/no-static-element-interactions": 0 disables jsx-a11y's static element interaction rule.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.2
    0
    • latest

Version History

Package Sidebar

Install

npm i eslint-config-medishare

Weekly Downloads

1

Version

1.0.2

License

ISC

Last publish

Collaborators

  • jandersen