2018-07-22 17:31:15 +00:00
|
|
|
{
|
2020-05-24 23:11:34 +00:00
|
|
|
"root": true,
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"plugins": [
|
|
|
|
"@typescript-eslint"
|
|
|
|
],
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:react/recommended"
|
|
|
|
],
|
2018-07-22 17:31:15 +00:00
|
|
|
"parserOptions": {
|
2020-05-24 23:11:34 +00:00
|
|
|
"ecmaFeatures": {
|
|
|
|
"jsx": true
|
|
|
|
}
|
|
|
|
},
|
2018-07-22 17:31:15 +00:00
|
|
|
"rules": {
|
2020-05-24 23:11:34 +00:00
|
|
|
"semi": "off",
|
|
|
|
"@typescript-eslint/semi": [
|
2018-07-22 17:31:15 +00:00
|
|
|
"error",
|
2020-05-24 23:11:34 +00:00
|
|
|
"never"
|
2018-07-22 17:31:15 +00:00
|
|
|
],
|
2020-05-24 23:11:34 +00:00
|
|
|
"quotes": "off",
|
|
|
|
"@typescript-eslint/quotes": [
|
2018-07-22 17:31:15 +00:00
|
|
|
"error",
|
|
|
|
"single"
|
|
|
|
],
|
2020-05-24 23:11:34 +00:00
|
|
|
"indent": "off",
|
|
|
|
"@typescript-eslint/indent": [
|
2018-07-22 17:31:15 +00:00
|
|
|
"error",
|
2020-05-24 23:11:34 +00:00
|
|
|
4
|
2018-07-22 17:31:15 +00:00
|
|
|
],
|
2020-05-24 23:11:34 +00:00
|
|
|
"@typescript-eslint/member-delimiter-style": [
|
2018-07-22 17:31:15 +00:00
|
|
|
"error",
|
|
|
|
{
|
2020-05-24 23:11:34 +00:00
|
|
|
"multiline": {
|
|
|
|
"delimiter": "none",
|
|
|
|
"requireLast": false
|
|
|
|
},
|
|
|
|
"singleline": {
|
|
|
|
"delimiter": "comma",
|
|
|
|
"requireLast": false
|
|
|
|
}
|
2018-07-22 17:31:15 +00:00
|
|
|
}
|
2019-07-12 00:51:58 +00:00
|
|
|
],
|
2020-05-24 23:11:34 +00:00
|
|
|
"@typescript-eslint/no-non-null-assertion": "off"
|
|
|
|
}
|
2018-07-22 17:31:15 +00:00
|
|
|
}
|