43 lines
885 B
JavaScript
43 lines
885 B
JavaScript
import eslint from "@eslint/js"
|
|
import prettier from "eslint-config-prettier"
|
|
import svelte from "eslint-plugin-svelte"
|
|
import globals from "globals"
|
|
import tseslint from "typescript-eslint"
|
|
|
|
export default tseslint.config(
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
...svelte.configs["flat/recommended"],
|
|
prettier,
|
|
...svelte.configs["flat/prettier"],
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
files: ["**/*.svelte"],
|
|
languageOptions: {
|
|
parserOptions: {
|
|
parser: tseslint.parser,
|
|
},
|
|
},
|
|
settings: {
|
|
svelte: {
|
|
ignoreWarnings: ["no-irregular-whitespace"],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
files: ["**/*.ts"],
|
|
rules: {
|
|
"no-irregular-whitespace": "off",
|
|
},
|
|
},
|
|
{
|
|
ignores: ["build/", ".svelte-kit/", "dist/"],
|
|
},
|
|
)
|