generated from AlexNi245/solidity-typescript-hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
tslint.json
34 lines (34 loc) · 1.06 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
{
"extends": ["tslint:latest", "tslint-plugin-prettier", "tslint-config-prettier"],
"rules": {
"prettier": true,
"object-literal-sort-keys": false,
"no-submodule-imports": false,
"interface-name": false,
"max-classes-per-file": false,
"no-empty": false,
"no-console": false,
"no-bitwise": false,
"only-arrow-functions": false,
"variable-name": [true, "check-format", "allow-leading-underscore", "allow-pascal-case"],
"ordered-imports": [
true,
{
"grouped-imports": true,
"import-sources-order": "case-insensitive"
}
],
"no-floating-promises": true,
"prefer-conditional-expression": false,
"no-implicit-dependencies": [true, "dev"],
"max-line-length": [
false,
{
"limit": 160,
"ignore-pattern": "^import |^export {(.*?)}",
"check-strings": true,
"check-regex": true
}
]
}
}