DUMPER-COMPANION: Enable more linting

Add type checking linting and enable back all rules.
This commit is contained in:
Le Philousophe
2025-12-26 18:58:40 +00:00
parent 79f7201888
commit 1566f937ad
+7 -5
View File
@@ -1,6 +1,6 @@
import eslint from '@eslint/js';
import globals from "globals";
import { defineConfig } from 'eslint/config';
import globals from 'globals';
import stylistic from '@stylistic/eslint-plugin';
import tseslint from 'typescript-eslint';
@@ -48,10 +48,12 @@ export default defineConfig(
name: "typescript specific",
files: ["**/*.ts", "**/*.tsx"],
extends: [tseslint.configs.recommended],
rules: {
"@typescript-eslint/no-empty-object-type": "off",
extends: [tseslint.configs.recommendedTypeChecked],
languageOptions: {
parserOptions: {
projectService: true,
jsxPragma: null,
},
},
},
);