2025-12-26 14:26:37 +03:00
|
|
|
{
|
2026-05-31 19:16:44 +03:00
|
|
|
"plugins": ["import"],
|
2025-12-26 14:26:37 +03:00
|
|
|
"categories": {
|
|
|
|
|
"correctness": "error",
|
|
|
|
|
"suspicious": "warn",
|
|
|
|
|
"perf": "warn",
|
|
|
|
|
"style": "warn",
|
|
|
|
|
"restriction": "error"
|
|
|
|
|
},
|
|
|
|
|
"env": {
|
|
|
|
|
"browser": true,
|
|
|
|
|
"es2021": true
|
|
|
|
|
},
|
|
|
|
|
"ignore": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist",
|
|
|
|
|
"build",
|
|
|
|
|
".svelte-kit",
|
|
|
|
|
".vercel",
|
|
|
|
|
"*.config.js",
|
|
|
|
|
"*.config.ts"
|
|
|
|
|
],
|
|
|
|
|
"rules": {
|
|
|
|
|
"no-console": "off",
|
|
|
|
|
"no-debugger": "error",
|
2026-05-31 19:16:44 +03:00
|
|
|
"no-alert": "warn",
|
|
|
|
|
"import/no-cycle": "error"
|
2025-12-26 14:26:37 +03:00
|
|
|
}
|
|
|
|
|
}
|