@iqrf/eslint-config 0.2.13 → 0.2.14

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +33 -7
  2. package/dist/index.js +25722 -0
  3. package/package.json +25 -24
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$3 {
55
+ interface Options$4 {
56
56
  typescript: boolean;
57
57
  vue: boolean;
58
58
  }
59
- declare const imports: (options: Options$3) => Linter.Config[];
59
+ declare const imports: (options: Options$4) => Linter.Config[];
60
60
 
61
61
  /**
62
62
  * Copyright 2024-2025 MICRORISC s.r.o.
@@ -77,10 +77,10 @@ declare const imports: (options: Options$3) => Linter.Config[];
77
77
  /**
78
78
  * JavaScript config options
79
79
  */
80
- interface Options$2 {
80
+ interface Options$3 {
81
81
  typescript: boolean;
82
82
  }
83
- declare const javascript: (options: Options$2) => Linter.Config[];
83
+ declare const javascript: (options: Options$3) => 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$1 {
137
+ interface Options$2 {
138
138
  typescript: boolean;
139
139
  }
140
- declare const markdown: (options: Options$1) => Linter.Config[];
140
+ declare const markdown: (options: Options$2) => Linter.Config[];
141
141
 
142
142
  /**
143
143
  * Copyright 2024-2025 MICRORISC s.r.o.
@@ -211,6 +211,30 @@ 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
+
214
238
  /**
215
239
  * Copyright 2024-2025 MICRORISC s.r.o.
216
240
  *
@@ -433,6 +457,8 @@ interface IqrfEslintOptions {
433
457
  perfectionist: boolean;
434
458
  /** Pinia support - auto-enabled by default. */
435
459
  pinia: boolean;
460
+ /** pnpm workspace support - disabled by default. */
461
+ pnpmWorkspace: boolean;
436
462
  /** Promise support - enabled by default. */
437
463
  promise: boolean;
438
464
  /** RegExp support - enabled by default. */
@@ -473,4 +499,4 @@ interface IqrfEslintOptions {
473
499
  */
474
500
  declare function iqrfEslint(options?: Partial<IqrfEslintOptions>, config?: Linter.Config | Linter.Config[]): Linter.Config[];
475
501
 
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 };
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, pnpm, promise, regexp, stylistic, typescript, unicorn, versionVue, vitest, vue, vueI18n };