platform/packages/platform-rig/profiles/ui/config/eslint.config.json
Andrey Sobolev 87aaf8c44f
TSK-1106: Update to latest packages (#2943)
* TSK-1106: Tiptap update

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>

* Svelte 3.58

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>

* Svelte check 3.2 and preprocess 5.03

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>

* Upgrade rush

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>

---------

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2023-04-11 17:21:13 +06:00

45 lines
1.1 KiB
JSON

{
"root": true,
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"standard-with-typescript"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": [
"**/tsconfig.json"
],
"extraFileExtensions": [".svelte"]
},
"plugins": ["svelte3", "@typescript-eslint", "import"],
"overrides": [
{
"files": ["**/*.svelte"],
"processor" : "svelte3/svelte3",
"rules" : {
"import/first": "off",
"import/no-duplicates": "off",
"import/no-mutable-exports": "off",
"import/no-unresolved": "off",
"no-multiple-empty-lines": "off",
"no-undef-init": "off",
"no-use-before-define": "off",
"@typescript-eslint/consistent-type-imports": "off"
}
}
],
"settings": {
"svelte3/typescript": true
}
}