Skip to content

Commit 820fa78

Browse files
asachs01claude
andcommitted
fix: Add ESLint configuration file
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 2b828e8 commit 820fa78

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.eslintrc.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"ecmaVersion": 2022,
6+
"sourceType": "module"
7+
},
8+
"plugins": ["@typescript-eslint"],
9+
"extends": [
10+
"eslint:recommended",
11+
"plugin:@typescript-eslint/recommended"
12+
],
13+
"env": {
14+
"node": true,
15+
"es2022": true
16+
},
17+
"rules": {
18+
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
19+
"@typescript-eslint/explicit-function-return-type": "off",
20+
"@typescript-eslint/no-explicit-any": "warn",
21+
"@typescript-eslint/no-non-null-assertion": "warn"
22+
},
23+
"ignorePatterns": ["dist/", "node_modules/", "*.js"]
24+
}

0 commit comments

Comments
 (0)