-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
executable file
·40 lines (40 loc) · 1.23 KB
/
tslint.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
39
40
{
"extends": "tslint:latest",
"rules": {
"variable-name": {
"options": [
"allow-leading-underscore",
"allow-snake-case",
"allow-pascal-case"
]
},
"ordered-imports": [false],
"eofline": true,
"no-implicit-dependencies": false,
"no-consecutive-blank-lines": false,
"no-console": [true, "log"],
"one-line": false,
"max-classes-per-file": false,
"only-arrow-functions": false,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"max-line-length": false,
"no-string-literal": false,
"no-bitwise": false,
"member-ordering": false,
"no-var-requires": false,
"indent": false,
"forin": false,
"arrow-parens": false,
"prefer-conditional-expression": false,
"prefer-for-of": false,
"quotemark": [true, "single", "jsx-double"],
"semicolon": [true, "always"],
"curly": true,
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
"array-type": [true, "array-simple"],
"no-submodule-imports": [true, "hardhat", "hardhat-deploy", "hardhat-deploy-ethers"],
"interface-name": [true, "always-prefix"],
"member-access": [true, "check-accessor", "check-parameter-property"]
}
}