forked from calcom/synclinear.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
31 lines (31 loc) · 850 Bytes
/
.eslintrc
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
31
{
"extends": [
"airbnb-base",
"airbnb-typescript/base",
"plugin:prettier/recommended"
],
"plugins": ["prettier"],
"rules": {
"prettier/prettier": ["off"],
"func-names": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off",
"max-classes-per-file": "off",
"no-bitwise": "off",
"class-methods-use-this": "off",
"no-new": "off",
"no-plusplus": "off",
"no-param-reassign": "off",
"no-else-return": "off",
"no-useless-return": "off",
"no-return-assign": "off",
"consistent-return": "off",
"no-underscore-dangle": "off",
"no-console": "error",
"no-restricted-syntax": "off",
"@typescript-eslint/no-empty-function": "off"
},
"parserOptions": {
"project": "./tsconfig.json"
}
}