mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-24 20:13:00 +03:00
3f066c718f
Initial Activity support Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
44 lines
1.0 KiB
JSON
44 lines
1.0 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"
|
|
}
|
|
}
|
|
],
|
|
"settings": {
|
|
"svelte3/typescript": true
|
|
}
|
|
}
|
|
|