2021-08-01 22:18:21 -07:00
|
|
|
{
|
|
|
|
|
"root": true,
|
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
|
"parserOptions": {
|
|
|
|
|
"ecmaVersion": 6,
|
|
|
|
|
"sourceType": "module"
|
|
|
|
|
},
|
|
|
|
|
"plugins": [
|
|
|
|
|
"@typescript-eslint"
|
|
|
|
|
],
|
2022-12-06 15:03:41 -08:00
|
|
|
"extends": [
|
|
|
|
|
"eslint:recommended",
|
|
|
|
|
"plugin:@typescript-eslint/recommended"
|
|
|
|
|
],
|
2021-08-01 22:18:21 -07:00
|
|
|
"rules": {
|
|
|
|
|
"@typescript-eslint/naming-convention": "warn",
|
|
|
|
|
"@typescript-eslint/semi": "warn",
|
|
|
|
|
"curly": "warn",
|
|
|
|
|
"eqeqeq": "warn",
|
|
|
|
|
"no-throw-literal": "warn",
|
2022-12-06 15:03:41 -08:00
|
|
|
"semi": [
|
|
|
|
|
"error",
|
|
|
|
|
"always"
|
|
|
|
|
]
|
2021-08-01 22:18:21 -07:00
|
|
|
},
|
|
|
|
|
"ignorePatterns": [
|
|
|
|
|
"**/*.d.ts"
|
|
|
|
|
]
|
2022-12-06 15:03:41 -08:00
|
|
|
}
|