forked from livekit/node-sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
30 lines (29 loc) · 719 Bytes
/
Copy path.eslintrc
File metadata and controls
30 lines (29 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"plugins": ["@typescript-eslint", "eslint-plugin-tsdoc"],
"extends": [
"plugin:@typescript-eslint/recommended",
"turbo",
"prettier"
],
"env": {
"browser": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2022,
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"tsdoc/syntax": "warn",
"space-before-function-parens": 0,
"@typescript-eslint/no-unused-vars": "error",
"import/export": 0,
"@typescript-eslint/ban-ts-comment": "warn",
"@typescript-eslint/no-empty-interface": "warn",
"@typescript-eslint/consistent-type-imports": "warn",
"@typescript-eslint/no-explicit-any": "warn"
}
}