pnpm workspace root for Barazo forum development — shared configuration, tooling, and cross-package dependency management barazo.forum
at main 22 lines 543 B view raw
1import tseslint from "typescript-eslint"; 2 3export default tseslint.config( 4 ...tseslint.configs.strictTypeChecked, 5 { 6 rules: { 7 "no-console": "error", 8 "@typescript-eslint/no-explicit-any": "error", 9 "@typescript-eslint/no-unused-vars": [ 10 "error", 11 { argsIgnorePattern: "^_", varsIgnorePattern: "^_" }, 12 ], 13 "@typescript-eslint/consistent-type-imports": [ 14 "error", 15 { prefer: "type-imports" }, 16 ], 17 }, 18 }, 19 { 20 ignores: ["dist/", "node_modules/", "*.config.*"], 21 }, 22);