lint: move some more rules to oxlint/oxfmt and upgrade linter versions (#6398)

This commit is contained in:
Matiss Janis Aboltins
2025-12-13 22:41:21 +00:00
committed by GitHub
parent 7648446bbf
commit 094da46fb0
44 changed files with 338 additions and 331 deletions

View File

@@ -35,14 +35,14 @@
"@desktop-client/*": ["./packages/desktop-client/src/*"],
"@desktop-client/e2e/*": ["./packages/desktop-client/e2e/*"],
// Allow importing from hyperformula's internal typings for custom function plugins
"hyperformula/typings/*": ["./node_modules/hyperformula/typings/*"]
"hyperformula/typings/*": ["./node_modules/hyperformula/typings/*"],
},
"plugins": [
{
"name": "typescript-strict-plugin",
"path": ["./packages"]
}
]
"path": ["./packages"],
},
],
},
"include": ["packages/**/*", "bin/*.ts"],
"exclude": [
@@ -55,11 +55,11 @@
"**/lib-dist/*",
"**/test-results/*",
"**/playwright-report/*",
"**/service-worker/*"
"**/service-worker/*",
],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
"module": "CommonJS",
},
},
}