46 lines
660 B
JSON
46 lines
660 B
JSON
{
|
|
"globals": {
|
|
"Qs": "readonly"
|
|
},
|
|
"env": {
|
|
"commonjs": true,
|
|
"es2021": true,
|
|
"node": true,
|
|
"browser": true
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"@matt-fidd"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest"
|
|
},
|
|
"rules": {
|
|
"max-len": "off",
|
|
"sort-imports": [
|
|
"error",
|
|
{
|
|
"allowSeparatedGroups": true
|
|
}
|
|
],
|
|
"camelcase": [
|
|
"error",
|
|
{
|
|
"allow": [
|
|
"not_equals",
|
|
"greater_than",
|
|
"greater_than_equal",
|
|
"less_than",
|
|
"less_than_equal",
|
|
"not_in"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|