regexper-static/.eslintrc.json
Jeff Avallone 819d4be1a5 Removing import lint rules
Shortcut for importing components is messing with the lint rules and I
can't get a custom resolver working
2019-01-02 19:12:53 -05:00

45 lines
601 B
JSON

{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
},
"settings": {
"react": {
"version": "16.7"
}
}
}