mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-22 18:30:09 +00:00
15 lines
386 B
JSON
15 lines
386 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["solid", "@typescript-eslint", "prettier"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:solid/typescript",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"@typescript-eslint/no-explicit-any": "warn"
|
|
},
|
|
"ignorePatterns": ["dist", "node_modules"]
|
|
}
|