8295bd6882
this shall be a progressive process
34 lines
651 B
Plaintext
34 lines
651 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"xo-space/esnext",
|
|
"prettier",
|
|
"prettier/react"
|
|
],
|
|
"plugins": [
|
|
"react",
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"react/react-in-jsx-scope": 0,
|
|
"react/display-name": 0,
|
|
"react/prop-types": 0,
|
|
"prettier/prettier": ["error", {
|
|
"useTabs": false,
|
|
"printWidth": 80,
|
|
"tabWidth": 2,
|
|
"singleQuote": true,
|
|
"trailingComma": "none",
|
|
"bracketSpacing": true,
|
|
"jsxBracketSameLine": false,
|
|
"semi": true
|
|
}]
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"node": true
|
|
}
|
|
} |