62 lines
1.3 KiB
JSON
62 lines
1.3 KiB
JSON
{
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
"plugins": ["typescript", "import", "promise"],
|
|
"categories": {
|
|
"correctness": "error",
|
|
"suspicious": "error",
|
|
"pedantic": "warn",
|
|
"perf": "warn"
|
|
},
|
|
"rules": {
|
|
"max-dependencies": "off",
|
|
"max-lines": "off",
|
|
"max-lines-per-function": "off",
|
|
"no-inline-comments": "off",
|
|
"no-unused-vars": [
|
|
"error",
|
|
{
|
|
"vars": "all",
|
|
"args": "none",
|
|
"ignoreRestSiblings": true,
|
|
"caughtErrors": "none",
|
|
"argsIgnorePattern": "^_",
|
|
"varsIgnorePattern": "^_"
|
|
}
|
|
]
|
|
},
|
|
"settings": {
|
|
"jsx-a11y": {
|
|
"polymorphicPropName": null,
|
|
"components": {},
|
|
"attributes": {}
|
|
},
|
|
"next": {
|
|
"rootDir": []
|
|
},
|
|
"react": {
|
|
"formComponents": [],
|
|
"linkComponents": [],
|
|
"version": null,
|
|
"componentWrapperFunctions": []
|
|
},
|
|
"jsdoc": {
|
|
"ignorePrivate": false,
|
|
"ignoreInternal": false,
|
|
"ignoreReplacesDocs": true,
|
|
"overrideReplacesDocs": true,
|
|
"augmentsExtendsReplacesDocs": false,
|
|
"implementsReplacesDocs": false,
|
|
"exemptDestructuredRootsFromChecks": false,
|
|
"tagNamePreference": {}
|
|
}
|
|
},
|
|
"env": {
|
|
"builtin": true,
|
|
"browser": true,
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"globals": {},
|
|
"ignorePatterns": []
|
|
}
|