forked from what3words/w3w-node-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
28 lines (28 loc) · 644 Bytes
/
Copy path.eslintrc
File metadata and controls
28 lines (28 loc) · 644 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
{
"root": true,
"env": {
"node": true,
"browser": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
"project": "tsconfig.json"
},
"plugins": ["prettier", "@typescript-eslint"],
"rules": {
"no-undef": 0,
"no-unused-vars": 0,
"no-console": 0,
"semi": [1, "always"],
"indent": 0,
"@typescript-eslint/indent": [0, 2],
"@typescript-eslint/no-var-requires": 0,
"prettier/prettier": "error"
}
}