mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2026-07-29 19:55:21 -04:00
18 lines
471 B
JSON
18 lines
471 B
JSON
{
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
"plugins": ["oxc", "eslint", "typescript", "import", "unicorn"],
|
|
"env": {
|
|
"builtin": true
|
|
},
|
|
"categories": {
|
|
"correctness": "error",
|
|
"suspicious": "warn"
|
|
},
|
|
"rules": {
|
|
"import/no-named-as-default": "off",
|
|
"unicorn/consistent-function-scoping": "off",
|
|
"unicorn/no-array-sort": "off"
|
|
},
|
|
"ignorePatterns": ["node_modules", "dist", "dist-platforms", "src/generated"]
|
|
}
|