@iqrf/eslint-config 0.2.14 → 0.2.15
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/dist/index.d.ts +7 -33
- package/dist/index.js +0 -25721
- package/package.json +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -52,11 +52,11 @@ declare const cypress: Linter.Config[];
|
|
|
52
52
|
* limitations under the License.
|
|
53
53
|
*/
|
|
54
54
|
|
|
55
|
-
interface Options$
|
|
55
|
+
interface Options$3 {
|
|
56
56
|
typescript: boolean;
|
|
57
57
|
vue: boolean;
|
|
58
58
|
}
|
|
59
|
-
declare const imports: (options: Options$
|
|
59
|
+
declare const imports: (options: Options$3) => Linter.Config[];
|
|
60
60
|
|
|
61
61
|
/**
|
|
62
62
|
* Copyright 2024-2025 MICRORISC s.r.o.
|
|
@@ -77,10 +77,10 @@ declare const imports: (options: Options$4) => Linter.Config[];
|
|
|
77
77
|
/**
|
|
78
78
|
* JavaScript config options
|
|
79
79
|
*/
|
|
80
|
-
interface Options$
|
|
80
|
+
interface Options$2 {
|
|
81
81
|
typescript: boolean;
|
|
82
82
|
}
|
|
83
|
-
declare const javascript: (options: Options$
|
|
83
|
+
declare const javascript: (options: Options$2) => Linter.Config[];
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
86
|
* Copyright 2024-2025 MICRORISC s.r.o.
|
|
@@ -134,10 +134,10 @@ declare const json: Linter.Config[];
|
|
|
134
134
|
* limitations under the License.
|
|
135
135
|
*/
|
|
136
136
|
|
|
137
|
-
interface Options$
|
|
137
|
+
interface Options$1 {
|
|
138
138
|
typescript: boolean;
|
|
139
139
|
}
|
|
140
|
-
declare const markdown: (options: Options$
|
|
140
|
+
declare const markdown: (options: Options$1) => Linter.Config[];
|
|
141
141
|
|
|
142
142
|
/**
|
|
143
143
|
* Copyright 2024-2025 MICRORISC s.r.o.
|
|
@@ -211,30 +211,6 @@ declare const perfectionist: Linter.Config[];
|
|
|
211
211
|
|
|
212
212
|
declare const pinia: Linter.Config[];
|
|
213
213
|
|
|
214
|
-
/**
|
|
215
|
-
* Copyright 2024-2025 MICRORISC s.r.o.
|
|
216
|
-
*
|
|
217
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
218
|
-
* you may not use this file except in compliance with the License.
|
|
219
|
-
* You may obtain a copy of the License at
|
|
220
|
-
*
|
|
221
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
222
|
-
*
|
|
223
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
224
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
225
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
226
|
-
* See the License for the specific language governing permissions and
|
|
227
|
-
* limitations under the License.
|
|
228
|
-
*/
|
|
229
|
-
|
|
230
|
-
/**
|
|
231
|
-
* Options for pnpm ESLint configuration.
|
|
232
|
-
*/
|
|
233
|
-
interface Options$1 {
|
|
234
|
-
isWorkspace: boolean;
|
|
235
|
-
}
|
|
236
|
-
declare const pnpm: (options: Options$1) => Linter.Config[];
|
|
237
|
-
|
|
238
214
|
/**
|
|
239
215
|
* Copyright 2024-2025 MICRORISC s.r.o.
|
|
240
216
|
*
|
|
@@ -457,8 +433,6 @@ interface IqrfEslintOptions {
|
|
|
457
433
|
perfectionist: boolean;
|
|
458
434
|
/** Pinia support - auto-enabled by default. */
|
|
459
435
|
pinia: boolean;
|
|
460
|
-
/** pnpm workspace support - disabled by default. */
|
|
461
|
-
pnpmWorkspace: boolean;
|
|
462
436
|
/** Promise support - enabled by default. */
|
|
463
437
|
promise: boolean;
|
|
464
438
|
/** RegExp support - enabled by default. */
|
|
@@ -499,4 +473,4 @@ interface IqrfEslintOptions {
|
|
|
499
473
|
*/
|
|
500
474
|
declare function iqrfEslint(options?: Partial<IqrfEslintOptions>, config?: Linter.Config | Linter.Config[]): Linter.Config[];
|
|
501
475
|
|
|
502
|
-
export { type IqrfEslintOptions, comments, cypress, getVueVersion, hasCypress, hasPinia, hasTypescript, hasVitest, hasVue, hasVueI18n, hasVuetify, imports, iqrfEslint, isInEditor, javascript, jsDoc, json, markdown, math, node, perfectionist, pinia,
|
|
476
|
+
export { type IqrfEslintOptions, comments, cypress, getVueVersion, hasCypress, hasPinia, hasTypescript, hasVitest, hasVue, hasVueI18n, hasVuetify, imports, iqrfEslint, isInEditor, javascript, jsDoc, json, markdown, math, node, perfectionist, pinia, promise, regexp, stylistic, typescript, unicorn, versionVue, vitest, vue, vueI18n };
|