forked from balassy/aws-lambda-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
30 lines (30 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
{
"extends": "tslint:all",
"rules": {
"await-promise": [true, "RequestPromise"],
"completed-docs": false,
"file-name-casing": [true, "kebab-case"],
"interface-name": [true, "never-prefix"],
"linebreak-style": false,
"max-line-length": [true, 300],
"newline-before-return": false,
"newline-per-chained-call": false,
"no-angle-bracket-type-assertion": false,
"no-implicit-dependencies": [true, "dev"],
"no-inferrable-types": false,
"no-object-literal-type-assertion": false,
"no-parameter-properties": false,
"no-unnecessary-class": ["allow-static-only"],
"no-use-before-declare": false,
"no-void-expression": false,
"only-arrow-functions": false,
"ordered-imports": [true, { "grouped-imports": false }],
"prefer-template": [true, "allow-single-concat"],
"promise-function-async": false,
"quotemark": [true, "single"],
"restrict-plus-operands": false,
"strict-boolean-expressions": false,
"trailing-comma": false,
"variable-name": [true,"check-format", "allow-leading-underscore"]
}
}