@schemastore/codeclimate 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +9 -17
- package/package.json +2 -1
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -12,14 +12,6 @@ export type Prepare = {
|
|
|
12
12
|
[k: string]: unknown | undefined;
|
|
13
13
|
}[];
|
|
14
14
|
export type Threshold = number | null;
|
|
15
|
-
export type Threshold1 = number | null;
|
|
16
|
-
export type Threshold2 = number | null;
|
|
17
|
-
export type Threshold3 = number | null;
|
|
18
|
-
export type Threshold4 = number | null;
|
|
19
|
-
export type Threshold5 = number | null;
|
|
20
|
-
export type Threshold6 = number | null;
|
|
21
|
-
export type Threshold7 = number | null;
|
|
22
|
-
export type Threshold8 = number | null;
|
|
23
15
|
export type Enabled1 = boolean;
|
|
24
16
|
export type ExcludePattern = string;
|
|
25
17
|
export type ExcludePatterns = ExcludePattern[];
|
|
@@ -61,7 +53,7 @@ export interface ComplexLogic {
|
|
|
61
53
|
[k: string]: unknown | undefined;
|
|
62
54
|
}
|
|
63
55
|
export interface Config1 {
|
|
64
|
-
threshold?:
|
|
56
|
+
threshold?: Threshold;
|
|
65
57
|
[k: string]: unknown | undefined;
|
|
66
58
|
}
|
|
67
59
|
export interface FileLines {
|
|
@@ -69,7 +61,7 @@ export interface FileLines {
|
|
|
69
61
|
[k: string]: unknown | undefined;
|
|
70
62
|
}
|
|
71
63
|
export interface Config2 {
|
|
72
|
-
threshold?:
|
|
64
|
+
threshold?: Threshold;
|
|
73
65
|
[k: string]: unknown | undefined;
|
|
74
66
|
}
|
|
75
67
|
export interface MethodComplexity {
|
|
@@ -77,7 +69,7 @@ export interface MethodComplexity {
|
|
|
77
69
|
[k: string]: unknown | undefined;
|
|
78
70
|
}
|
|
79
71
|
export interface Config3 {
|
|
80
|
-
threshold?:
|
|
72
|
+
threshold?: Threshold;
|
|
81
73
|
[k: string]: unknown | undefined;
|
|
82
74
|
}
|
|
83
75
|
export interface MethodCount {
|
|
@@ -85,7 +77,7 @@ export interface MethodCount {
|
|
|
85
77
|
[k: string]: unknown | undefined;
|
|
86
78
|
}
|
|
87
79
|
export interface Config4 {
|
|
88
|
-
threshold?:
|
|
80
|
+
threshold?: Threshold;
|
|
89
81
|
[k: string]: unknown | undefined;
|
|
90
82
|
}
|
|
91
83
|
export interface MethodLines {
|
|
@@ -93,7 +85,7 @@ export interface MethodLines {
|
|
|
93
85
|
[k: string]: unknown | undefined;
|
|
94
86
|
}
|
|
95
87
|
export interface Config5 {
|
|
96
|
-
threshold?:
|
|
88
|
+
threshold?: Threshold;
|
|
97
89
|
[k: string]: unknown | undefined;
|
|
98
90
|
}
|
|
99
91
|
export interface NestedControlFlow {
|
|
@@ -101,7 +93,7 @@ export interface NestedControlFlow {
|
|
|
101
93
|
[k: string]: unknown | undefined;
|
|
102
94
|
}
|
|
103
95
|
export interface Config6 {
|
|
104
|
-
threshold?:
|
|
96
|
+
threshold?: Threshold;
|
|
105
97
|
[k: string]: unknown | undefined;
|
|
106
98
|
}
|
|
107
99
|
export interface ReturnStatements {
|
|
@@ -109,7 +101,7 @@ export interface ReturnStatements {
|
|
|
109
101
|
[k: string]: unknown | undefined;
|
|
110
102
|
}
|
|
111
103
|
export interface Config7 {
|
|
112
|
-
threshold?:
|
|
104
|
+
threshold?: Threshold;
|
|
113
105
|
[k: string]: unknown | undefined;
|
|
114
106
|
}
|
|
115
107
|
export interface SimilarCode {
|
|
@@ -117,7 +109,7 @@ export interface SimilarCode {
|
|
|
117
109
|
[k: string]: unknown | undefined;
|
|
118
110
|
}
|
|
119
111
|
export interface Config8 {
|
|
120
|
-
threshold?:
|
|
112
|
+
threshold?: Threshold;
|
|
121
113
|
[k: string]: unknown | undefined;
|
|
122
114
|
}
|
|
123
115
|
export interface IdenticalCode {
|
|
@@ -125,7 +117,7 @@ export interface IdenticalCode {
|
|
|
125
117
|
[k: string]: unknown | undefined;
|
|
126
118
|
}
|
|
127
119
|
export interface Config9 {
|
|
128
|
-
threshold?:
|
|
120
|
+
threshold?: Threshold;
|
|
129
121
|
[k: string]: unknown | undefined;
|
|
130
122
|
}
|
|
131
123
|
/**
|