fix(tooling): lint 검사를 저메모리 하이브리드로 전환
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
||||
"categories": {
|
||||
"correctness": "off"
|
||||
},
|
||||
"plugins": ["typescript"],
|
||||
"options": {
|
||||
"typeAware": true,
|
||||
"respectEslintDisableDirectives": true
|
||||
},
|
||||
"rules": {
|
||||
"@typescript-eslint/no-floating-promises": "error",
|
||||
"@typescript-eslint/no-misused-promises": [
|
||||
"error",
|
||||
{
|
||||
"checksVoidReturn": {
|
||||
"arguments": false,
|
||||
"attributes": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"ignorePatterns": [
|
||||
"**/dist/**",
|
||||
"**/node_modules/**",
|
||||
"**/*.d.ts",
|
||||
"**/*.js",
|
||||
"**/*.mjs",
|
||||
"**/*.cjs",
|
||||
"**/*.vue",
|
||||
"legacy/**",
|
||||
"packages/infra/prisma/client/**",
|
||||
"**/generated/**",
|
||||
".pnpm-store/**"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user