forked from dubzzz/fast-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
28 lines (28 loc) · 887 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": [
// https://github.com/palantir/tslint/blob/master/src/configs/recommended.ts
"tslint:recommended",
"tslint-config-prettier"
],
"rules": {
"array-type": [true, "array"],
"import-name": false, // import pure-rand as prand
"interface-name": false,
"max-classes-per-file": false,
"member-access": [true, "no-public"],
"no-bitwise": false,
"no-namespace": false,
"no-unnecessary-callback-wrapper": false, // a.map(f) != a.map(e => f(e))
"unified-signatures": false,
// Format (handled by prettier if needed)
"curly": false,
"member-ordering": false,
"object-literal-sort-keys": false
},
"linterOptions": {
"exclude": [
"**/**.generated.**",
"test/**/*"
]
}
}