-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
24 lines (24 loc) · 895 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
{
"extends": ["airbnb-base", "airbnb-typescript/base"],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"import/extensions": "off",
"@typescript-eslint/comma-dangle": "off",
"import/prefer-default-export": "off",
"max-len": "off",
"consistent-return": "off",
"@typescript-eslint/no-unused-expressions": "off",
"no-plusplus": "off",
"no-mixed-operators": "off",
"@typescript-eslint/default-param-last": "off",
"@typescript-eslint/no-use-before-define": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"import/no-extraneous-dependencies": "off",
"@typescript-eslint/naming-convention": "warn",
"no-extend-native": "off",
"no-debugger": "warn"
},
"ignorePatterns": ["dist", "dist-example", "setupTests.ts", "jest.config.js"]
}