Skip to content

Commit

Permalink
Added eslint-plugin-jsx-a11y and react-axe to lint and check for comm…
Browse files Browse the repository at this point in the history
…on accessibility findings
  • Loading branch information
Erin Doyle committed Mar 17, 2019
1 parent 32ed99b commit f1639a1
Show file tree
Hide file tree
Showing 8 changed files with 892 additions and 133 deletions.
32 changes: 32 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react",
"import",
"jsx-a11y"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:jsx-a11y/recommended"
],
"settings": {
"react": {
"version": "detect"
}
}
}
Loading

0 comments on commit f1639a1

Please sign in to comment.