mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
import js from "@eslint/js";
|
|
import globals from "globals";
|
|
import { fileURLToPath } from "node:url";
|
|
import { includeIgnoreFile } from "@eslint/compat";
|
|
|
|
// Plugins:
|
|
import ts from "typescript-eslint";
|
|
import svelte from "eslint-plugin-svelte";
|
|
import prettier from "eslint-config-prettier";
|
|
|
|
// Svelte Config:
|
|
import svelteConfig from "./svelte.config.js";
|
|
|
|
// Ignore files:
|
|
const gitignorePath = fileURLToPath(new URL("./.gitignore", import.meta.url));
|
|
|
|
export default [
|
|
includeIgnoreFile(gitignorePath),
|
|
js.configs.recommended,
|
|
...ts.configs.recommended,
|
|
...svelte.configs.recommended,
|
|
prettier,
|
|
...svelte.configs.prettier,
|
|
{
|
|
languageOptions: {
|
|
globals: { ...globals.browser, ...globals.node },
|
|
parserOptions: {
|
|
tsconfigRootDir: fileURLToPath(new URL(".", import.meta.url)),
|
|
},
|
|
},
|
|
rules: {
|
|
"no-undef": "off",
|
|
"@typescript-eslint/array-type": "off",
|
|
"@typescript-eslint/consistent-type-definitions": "off",
|
|
"@typescript-eslint/consistent-type-imports": [
|
|
"warn",
|
|
{ prefer: "type-imports", fixStyle: "inline-type-imports" },
|
|
],
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"warn",
|
|
{ argsIgnorePattern: "^_" },
|
|
],
|
|
"@typescript-eslint/require-await": "off",
|
|
},
|
|
},
|
|
{
|
|
files: ["**/*.svelte", "**/*.svelte.ts", "**/*.svelte.js"],
|
|
languageOptions: {
|
|
parserOptions: {
|
|
projectService: true,
|
|
extraFileExtensions: [".svelte"],
|
|
parser: ts.parser,
|
|
svelteConfig,
|
|
},
|
|
},
|
|
rules: {
|
|
"svelte/no-unused-svelte-ignore": "warn",
|
|
"svelte/no-useless-mustaches": "warn",
|
|
"svelte/require-each-key": "warn",
|
|
"svelte/no-at-html-tags": "off",
|
|
},
|
|
},
|
|
];
|