mirror of
https://github.com/karakeep-app/karakeep.git
synced 2025-12-12 20:35:52 +01:00
* chore: migrate away from eslint to oxlint * revert turbo task name lint * it seems like we can remove the seemingly default globals
23 lines
411 B
JSON
23 lines
411 B
JSON
{
|
|
"$schema": "../../node_modules/oxlint/configuration_schema.json",
|
|
"extends": [
|
|
"../../tooling/oxlint/oxlint-base.json"
|
|
],
|
|
"categories": {
|
|
"correctness": "warn"
|
|
},
|
|
"env": {
|
|
"builtin": true,
|
|
"commonjs": true
|
|
},
|
|
"ignorePatterns": [
|
|
"**/*.config.js",
|
|
"**/*.config.cjs",
|
|
"**/.eslintrc.cjs",
|
|
"**/.next",
|
|
"**/dist",
|
|
"**/build",
|
|
"**/pnpm-lock.yaml"
|
|
]
|
|
}
|