SkirdaElectronLauncher/.eslintrc.json

48 lines
1.1 KiB
JSON
Raw Normal View History

{
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"
],
"parserOptions": {
2020-05-24 23:11:34 +00:00
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
2020-05-24 23:11:34 +00:00
"semi": "off",
"@typescript-eslint/semi": [
"error",
2020-05-24 23:11:34 +00:00
"never"
],
2020-05-24 23:11:34 +00:00
"quotes": "off",
"@typescript-eslint/quotes": [
"error",
"single"
],
2020-05-24 23:11:34 +00:00
"indent": "off",
"@typescript-eslint/indent": [
"error",
2020-05-24 23:11:34 +00:00
4
],
2020-05-24 23:11:34 +00:00
"@typescript-eslint/member-delimiter-style": [
"error",
{
2020-05-24 23:11:34 +00:00
"multiline": {
"delimiter": "none",
"requireLast": false
},
"singleline": {
"delimiter": "comma",
"requireLast": false
}
}
2019-07-12 00:51:58 +00:00
],
2020-05-24 23:11:34 +00:00
"@typescript-eslint/no-non-null-assertion": "off"
}
}