Files
ncd-fe/packages/pl-api/.oxlintrc.json
nicole mikołajczyk eaf3d622a2 nicolium: wip preferences changes
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-02-15 17:47:51 +01:00

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": []
}