2022-01-16 23:47:19 +00:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"commonjs": true,
|
|
|
|
"es2021": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"google"
|
|
|
|
],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": "latest"
|
|
|
|
},
|
|
|
|
"plugins": [
|
2022-09-12 01:07:42 +01:00
|
|
|
"@typescript-eslint",
|
|
|
|
"simple-import-sort"
|
2022-01-16 23:47:19 +00:00
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"linebreak-style": "off",
|
|
|
|
"object-curly-spacing": "off",
|
|
|
|
"max-len": "off",
|
|
|
|
"require-jsdoc": "off",
|
2022-04-17 22:13:59 +01:00
|
|
|
"valid-jsdoc": "off",
|
2022-04-13 20:04:19 +01:00
|
|
|
"indent": ["error", 4, { "SwitchCase": 1 }],
|
2022-01-16 23:47:19 +00:00
|
|
|
"no-multi-spaces": "off",
|
|
|
|
"no-array-constructor": "off",
|
|
|
|
"guard-for-in": "off",
|
2022-02-12 00:59:14 +00:00
|
|
|
"func-call-spacing": "off",
|
|
|
|
"no-trailing-spaces": "off",
|
|
|
|
"new-cap": "off",
|
2022-02-19 21:50:17 +00:00
|
|
|
"no-console": "warn",
|
2022-04-13 20:04:19 +01:00
|
|
|
"no-unused-vars": "warn",
|
|
|
|
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
|
|
|
|
"block-spacing": [2, "always"],
|
2022-09-11 17:38:22 +01:00
|
|
|
"semi": "error",
|
|
|
|
"spaced-comment": "off",
|
2022-09-11 19:21:33 +01:00
|
|
|
"keyword-spacing": "off",
|
2022-09-12 01:07:42 +01:00
|
|
|
"space-before-function-paren": "off",
|
|
|
|
"simple-import-sort/imports": "error",
|
|
|
|
"simple-import-sort/exports": "error"
|
2022-01-16 23:47:19 +00:00
|
|
|
}
|
|
|
|
}
|