Use eslint to lint the eslint-config package itself

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-01-21 16:31:51 +04:00
parent bcc9de804e
commit 469e1431a3
12 changed files with 81 additions and 180 deletions

View File

@@ -1,9 +1,10 @@
{
"complierOptions": {
"compilerOptions": {
"lib": ["ES2023"],
"allowJs": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "nodenext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"moduleDetection": "force",
"verbatimModuleSyntax": true,
"noEmit": true,
@@ -14,5 +15,5 @@
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["./*.ts"]
"include": ["src/**/*.ts", "eslint.config.js"]
}