Skip to content

Commit 04d548e

Browse files
authoredMar 12, 2024··
Linter (#396)
1 parent 8618c7b commit 04d548e

File tree

280 files changed

+1894
-1097
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

280 files changed

+1894
-1097
lines changed
 

‎.eslintrc.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"env": {
3+
"node": true
4+
},
5+
"root": true,
6+
"parser": "@typescript-eslint/parser",
7+
"plugins": ["@typescript-eslint"],
8+
"extends": [ ],
9+
"rules": {
10+
"@typescript-eslint/consistent-type-imports": "error",
11+
"@typescript-eslint/consistent-type-exports": "error"
12+
},
13+
"ignorePatterns": ["__tests__", "*.js", "*.d.ts", "ethers-contracts", "jest.*"],
14+
"parserOptions": {
15+
"project": "./tsconfig.esm.json"
16+
}
17+
}

‎connect/eslintrc.json

-20
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.