-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
22 lines (22 loc) · 769 Bytes
/
.eslintrc.json
File metadata and controls
22 lines (22 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"parser": "@typescript-eslint/parser",
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"plugins": ["@typescript-eslint"],
"ignorePatterns": ["node_modules/", "dist/", "package/", "tests/"],
"rules": {
"indent": ["error", 4],
"linebreak-style": "off",
"quotes": ["error", "single"],
"semi": ["error", "never"],
"comma-dangle": ["error", "never"],
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off",
"no-inner-declarations": "off",
"no-prototype-builtins": "off"
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest"
}
}