forked from maugenst/tabletojson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
38 lines (38 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
{
"extends": [
"tslint:recommended"
],
"rulesDirectory": ["tslint-plugin-prettier"],
"jsRules": {},
"rules": {
"callable-types": true,
"quotemark": [true, "single", "avoid-escape"],
"member-access": [false],
"ordered-imports": [false],
"member-ordering": [false],
"trailing-comma": false,
"arrow-parens": false,
"only-arrow-functions": false,
"object-literal-sort-keys": false,
"interface-over-type-literal": false,
"max-classes-per-file": false,
"no-console": false,
"object-literal-key-quotes": [true, "as-needed"],
"semicolon": [true, "always", "strict-bound-class-methods"],
"no-return-await": true,
"array-type": [true, "array"],
"eofline": false,
"no-trailing-whitespace": false,
// // Make sure that ts-exports are predictable when imported into plain JS code
// "no-default-export": true,
"prettier": [true, ".prettierrc_ts.yaml"],
"max-line-length": [
true,
{
"limit": 120,
// JSDOC or single line comments
"ignore-pattern": " *\\*.+ |//.*"
}
]
}
}