regexper-static/.eslintrc.json

45 lines
601 B
JSON
Raw Normal View History

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