Skip to content
This repository was archived by the owner on Mar 28, 2024. It is now read-only.

Commit 7b17786

Browse files
committed
chore: change eslint config to json
1 parent 1d34d8a commit 7b17786

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
lines changed

packages/server/.eslintrc.js

-25
This file was deleted.

packages/server/.eslintrc.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"parserOptions": {
4+
"project": "./packages/server/tsconfig.json",
5+
"sourceType": "module"
6+
},
7+
"plugins": ["@typescript-eslint/eslint-plugin", "import", "sonarjs"],
8+
"extends": [
9+
"plugin:@typescript-eslint/eslint-recommended",
10+
"plugin:@typescript-eslint/recommended",
11+
"prettier",
12+
"prettier/@typescript-eslint",
13+
"plugin:sonarjs/recommended"
14+
],
15+
"root": true,
16+
"env": {
17+
"node": true,
18+
"jest": true
19+
},
20+
"rules": {
21+
"@typescript-eslint/interface-name-prefix": "off",
22+
"@typescript-eslint/explicit-function-return-type": "off",
23+
"@typescript-eslint/no-explicit-any": "off"
24+
}
25+
}

0 commit comments

Comments
 (0)