mirror of
https://github.com/textcortex/claude-code-sandbox.git
synced 2025-07-07 13:25:10 +00:00
25 lines
748 B
JavaScript
25 lines
748 B
JavaScript
module.exports = {
|
|
parser: "@typescript-eslint/parser",
|
|
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
|
parserOptions: {
|
|
ecmaVersion: 2022,
|
|
sourceType: "module",
|
|
project: "./tsconfig.json",
|
|
},
|
|
env: {
|
|
node: true,
|
|
es2022: true,
|
|
jest: true,
|
|
},
|
|
plugins: ["@typescript-eslint"],
|
|
rules: {
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
|
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
|
|
"no-console": "off",
|
|
semi: ["error", "always"],
|
|
quotes: ["error", "single"],
|
|
"comma-dangle": ["error", "never"],
|
|
},
|
|
ignorePatterns: ["dist/", "node_modules/", "coverage/", "*.js"],
|
|
};
|