Tobias Berger
0c107bc849
But now we both have to live with this, because I can't really be bothered to fix it Summary: +Save resources *Restructure Handlers -Remove StaticClass +Add Resource data files ~Change loading
26 lines
726 B
JavaScript
26 lines
726 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: "@typescript-eslint/parser",
|
|
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
|
plugins: ["svelte3", "@typescript-eslint"],
|
|
overrides: [
|
|
{ files: ["*.svelte"], processor: "svelte3/svelte3" },
|
|
{ files: ["*.[cm]js"], env: { node: true } },
|
|
],
|
|
settings: {
|
|
"svelte3/typescript": require("typescript"),
|
|
"svelte3/ignore-styles": ({ lang }) => lang === "scss",
|
|
},
|
|
parserOptions: {
|
|
sourceType: "module",
|
|
},
|
|
env: {
|
|
browser: true,
|
|
worker: true,
|
|
es2021: true,
|
|
node: false,
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/no-unused-vars": ["warn", { args: "all", argsIgnorePattern: "^_", ignoreRestSiblings: false }],
|
|
},
|
|
};
|