forked from domske/ring-buffer-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
27 lines (27 loc) · 981 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
{
"extends": ["tslint:recommended", "tslint-config-prettier", "tslint-consistent-codestyle"],
"rules": {
"max-classes-per-file": false,
"quotemark": [true, "single"],
"no-console": false,
"semicolon": [true, "always"],
"no-consecutive-blank-lines": true,
"ban-comma-operator": true,
"curly": true,
"function-constructor": true,
"no-duplicate-super": true,
"no-restricted-globals": [true, "event", "length", "name", "setInterval", "setTimeout"],
"prefer-template": [true, "allow-single-concat"],
"no-namespace": true,
"member-access": true,
"interface-name": false,
"typedef": [true, "call-signature", "property-declaration"],
"file-name-casing": [true, "kebab-case", "strictCamelCase"],
"naming-convention": [
true,
{ "type": "default", "format": "strictCamelCase" },
{ "type": "type", "format": "StrictPascalCase" },
{ "type": "enumMember", "format": "StrictPascalCase" }
]
}
}