Files
frontend-svelte/oxlint.json
T

30 lines
490 B
JSON
Raw Normal View History

{
2026-05-31 19:16:44 +03:00
"plugins": ["import"],
"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"
}
}