recommended.d.ts
2.18 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
export declare const rules: {
"align": (boolean | string)[];
"class-name": boolean;
"comment-format": (boolean | string)[];
"curly": boolean;
"eofline": boolean;
"forin": boolean;
"indent": (boolean | string)[];
"interface-name": (boolean | string)[];
"jsdoc-format": boolean;
"label-position": boolean;
"label-undefined": boolean;
"max-line-length": (boolean | number)[];
"member-access": boolean;
"member-ordering": (boolean | {
"order": string;
})[];
"new-parens": boolean;
"no-any": boolean;
"no-arg": boolean;
"no-bitwise": boolean;
"no-conditional-assignment": boolean;
"no-consecutive-blank-lines": boolean;
"no-console": (boolean | string)[];
"no-construct": boolean;
"no-constructor-vars": boolean;
"no-debugger": boolean;
"no-duplicate-key": boolean;
"no-duplicate-variable": boolean;
"no-empty": boolean;
"no-eval": boolean;
"no-internal-module": boolean;
"no-namespace": boolean;
"no-reference": boolean;
"no-shadowed-variable": boolean;
"no-string-literal": boolean;
"no-switch-case-fall-through": boolean;
"no-trailing-whitespace": boolean;
"no-unreachable": boolean;
"no-unused-expression": boolean;
"no-unused-new": boolean;
"no-unused-variable": (boolean | string)[];
"no-use-before-declare": boolean;
"no-var-keyword": boolean;
"no-var-requires": boolean;
"object-literal-sort-keys": boolean;
"one-line": (boolean | string)[];
"one-variable-per-declaration": (boolean | string)[];
"quotemark": (boolean | string)[];
"radix": boolean;
"semicolon": (boolean | string)[];
"switch-default": boolean;
"trailing-comma": (boolean | {
"singleline": string;
"multiline": string;
})[];
"triple-equals": (boolean | string)[];
"typedef": boolean;
"typedef-whitespace": (boolean | {
"call-signature": string;
"index-signature": string;
"parameter": string;
"property-declaration": string;
"variable-declaration": string;
})[];
"use-isnan": boolean;
"variable-name": (boolean | string)[];
"whitespace": (boolean | string)[];
};