38 lines
784 B
Plaintext
38 lines
784 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": [
|
|
"standard",
|
|
"standard-react",
|
|
"plugin:prettier/recommended",
|
|
"prettier/standard",
|
|
"prettier/react",
|
|
"plugin:@typescript-eslint/eslint-recommended"
|
|
],
|
|
"plugins": ["@typescript-eslint"],
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"ecmaFeatures": {
|
|
"legacyDecorators": true,
|
|
"jsx": true
|
|
}
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "16"
|
|
}
|
|
},
|
|
"rules": {
|
|
"space-before-function-paren": 0,
|
|
"react/prop-types": 0,
|
|
"react/jsx-handler-names": 0,
|
|
"react/jsx-fragments": 0,
|
|
"react/no-unused-prop-types": 0,
|
|
"import/export": 0,
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": "error"
|
|
}
|
|
}
|