Skip to content

ccm-innovation/eslint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eslint

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

npm install --save-dev eslint-config-medishare eslint@^3.0.0 lint-staged@^3.0.0 pre-commit@^1.0.0

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.

Releases

No releases published

Packages

No packages published