Files
Reactive-Resume/.oxlintrc.json
T
Amruth Pillai 99c602e3c7 Migrate from Biome to Oxlint/Oxfmt (#2822)
* Migrate from Biome to Oxlint/Oxfmt

* pin version of autofix

* set version of autofix

* pin version of autofix

* [autofix.ci] apply automated fixes

* better comments, test formatter

* [autofix.ci] apply automated fixes

* Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-03-18 14:59:05 +01:00

55 lines
966 B
JSON

{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"categories": {},
"env": {
"builtin": true
},
"globals": {},
"ignorePatterns": [],
"options": {
"typeAware": true
},
"plugins": [
"eslint",
"typescript",
"unicorn",
"oxc",
"react",
"react-perf",
"import",
"jsdoc",
"node",
"promise",
"vitest"
],
"rules": {
"react/exhaustive-deps": "off"
},
"settings": {
"jsdoc": {
"augmentsExtendsReplacesDocs": false,
"exemptDestructuredRootsFromChecks": false,
"ignoreInternal": false,
"ignorePrivate": false,
"ignoreReplacesDocs": true,
"implementsReplacesDocs": false,
"overrideReplacesDocs": true,
"tagNamePreference": {}
},
"jsx-a11y": {
"attributes": {},
"components": {},
"polymorphicPropName": ""
},
"react": {
"version": "19.2.4",
"formComponents": [],
"linkComponents": ["Link"],
"componentWrapperFunctions": []
},
"vitest": {
"typecheck": true
}
}
}