569d887d1e
Renaming the package so any further PRs directed to the website are targeted to the reworked code instead of diverging. Once merged, I will start preparing this for deployment to dev to test before releasing to prod. Any improvements will also be applied to this package. I avoided making significant changes to API routes so nothing breaks, but will test it thoroughly today to confirm. That said, everything is ported - double checked. Big diff PR, impossible to review, but last one! No more rebuilds.
17 lines
444 B
JSON
17 lines
444 B
JSON
{
|
|
"$schema": "../../node_modules/oxlint/configuration_schema.json",
|
|
"ignorePatterns": [],
|
|
"categories": {
|
|
"correctness": "error",
|
|
"suspicious": "error",
|
|
"perf": "error"
|
|
},
|
|
"plugins": ["react", "typescript", "oxc", "unicorn"],
|
|
"rules": {
|
|
"react/react-in-jsx-scope": "off",
|
|
"typescript/no-explicit-any": "error",
|
|
"typescript/consistent-type-definitions": ["error", "type"],
|
|
"no-unused-vars": "error"
|
|
}
|
|
}
|