forked from superdao-inc/dao-blockchain-os
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
38 lines (38 loc) · 889 Bytes
/
.eslintrc.json
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
32
33
34
35
36
37
38
{
"env": {
"browser": false,
"es2021": true,
"mocha": true,
"node": true
},
"plugins": [
"@typescript-eslint",
"chai-friendly"
],
"extends": [
"standard",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"semi": [
"error"
],
"prettier/prettier": [
"error",
{
"semi": false
}
],
"node/no-unsupported-features/es-syntax": "off",
"@typescript-eslint/ban-ts-comment": "off",
"camelcase": "warn",
"chai-friendly/no-unused-expressions": "error",
"no-unused-expressions": "off",
"n/no-deprecated-api": "warn"
}
}