1
1
mirror of https://github.com/primer/css.git synced 2024-09-19 20:57:37 +03:00
css/docs/.eslintrc.json

21 lines
325 B
JSON
Raw Normal View History

2019-02-12 00:57:49 +03:00
{
"extends": [
2021-03-27 02:46:41 +03:00
"plugin:react/recommended",
2019-02-12 00:57:49 +03:00
"plugin:jsx-a11y/recommended"
],
"rules": {
"import/no-namespace": 0,
"no-unused-vars": ["error", {
"ignoreRestSiblings": true
}]
},
"settings": {
"react": {
"version": "detect"
}
2019-12-17 01:17:54 +03:00
},
"globals": {
"__DEV__": "readonly"
2019-02-12 00:57:49 +03:00
}
}