forked from radixdlt/radixdlt-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
37 lines (34 loc) · 1.04 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
{
"extends": [
"tslint:latest"
// "tslint-config-prettier"
// "tslint-immutable"
],
"rules": {
"interface-name": [true, "never-prefix"],
// TODO: allow devDependencies only in **/*.spec.ts files:
// waiting on https://github.com/palantir/tslint/pull/3708
"no-implicit-dependencies": [true, "dev"],
"indent": [true, "spaces"],
"max-line-length": [true, 150],
"no-var-keyword": true,
"no-require-imports": true,
"semicolon": [true, "never"],
"no-duplicate-variable": true,
"class-name": true,
"align": [true, "parameters"],
"curly": true,
"no-console": false,
"member-ordering": false,
"ordered-imports": false,
"quotemark": [true, "single", "avoid-escape"],
"arrow-parens": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"object-literal-sort-keys": false,
"forin": false,
"no-consecutive-blank-lines": false,
"no-trailing-whitespace": false,
"no-bitwise": false,
"only-arrow-functions": false
}
}