1
1
mirror of https://github.com/primer/css.git synced 2024-12-14 15:10:35 +03:00
css/docs/.eslintrc.json

21 lines
320 B
JSON
Raw Normal View History

2019-02-12 00:57:49 +03:00
{
"extends": [
"plugin:github/react",
"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
}
}