forked from MickL/ts-image-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
28 lines (28 loc) · 836 Bytes
/
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
{
"extends": ["tslint:latest"],
"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"],
"no-var-keyword": true,
"member-access": [true, "no-public"],
"no-console": false,
"rules": { "typedef": [true, "parameter"] },
"no-empty": false,
"no-bitwise": false,
"no-angle-bracket-type-assertion": false,
"no-unused-expression": false,
"arrow-parens": false,
"quotemark": [true, "single"],
"max-line-length": false,
"no-trailing-whitespace": [
true,
"ignore-comments",
"ignore-blank-lines"
],
"max-classes-per-file": false,
"no-empty-interface": false,
"callable-types": false
}
}