Skip to content

Commit c213a14

Browse files
Merge pull request #3 from KeyValueSoftwareSystems/develop
chore: add eslint rc
2 parents 54a922a + 219c8fa commit c213a14

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.eslintrc.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"jest": true,
5+
"es2021": true
6+
},
7+
"parser": "@typescript-eslint/parser",
8+
"parserOptions": {
9+
"ecmaVersion": "latest",
10+
"sourceType": "module"
11+
},
12+
"plugins": ["@typescript-eslint"],
13+
"extends": [
14+
"eslint:recommended",
15+
"plugin:@typescript-eslint/recommended"
16+
],
17+
"rules": {
18+
"@typescript-eslint/no-empty-interface": "off"
19+
}
20+
}

0 commit comments

Comments
 (0)