@simpler-development/project-tools
Version:
This package provides a suite of scripts and utilities to support development, automation, and maintenance tasks across the monorepo.
24 lines (21 loc) • 495 B
text/typescript
import { Linter } from "eslint";
import tseslint from "typescript-eslint";
const config: Linter.FlatConfig[] = [
...tseslint.configs.recommended,
{
files: ["**/*.ts", "**/*.tsx"],
languageOptions: {
parser: tseslint.parser,
parserOptions: {
project: "./tsconfig.json",
sourceType: "module",
},
},
rules: {
// Add or override rules here
"no-unused-vars": "warn",
"no-console": "off",
},
},
];
export default config;