@kazupon/eslint-config 0.38.0 → 0.39.1

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 CHANGED
@@ -30,6 +30,7 @@ ESLint config for @kazupon
30
30
  - `css`
31
31
  - `html`
32
32
  - `deps`
33
+ - `oxlint`
33
34
  - Support primitive eslint flat configuration
34
35
  - Support overrides for built-in configurations
35
36
  - `rules`
@@ -146,6 +147,7 @@ The following built-in preset configurations are supported:
146
147
  | `css` | [`@eslint/css`](https://www.npmjs.com/package/@eslint/css) | yes |
147
148
  | `html` | [`@html-eslint/eslint-plugin`](https://www.npmjs.com/package/@html-eslint/eslint-plugin) | yes |
148
149
  | `deps` | [`eslint-plugin-barrel-files`](https://www.npmjs.com/package/eslint-plugin-barrel-files) | yes |
150
+ | `oxclint` | [`eslint-plugin-oxlint`](https://www.npmjs.com/package/eslint-plugin-oxlint) | yes |
149
151
 
150
152
  You can use `import` syntax:
151
153
 
@@ -5,6 +5,10 @@ import * as typescript0 from "typescript";
5
5
  import { StylisticCustomizeOptions } from "@stylistic/eslint-plugin";
6
6
 
7
7
  //#region src/config.d.ts
8
+ /**
9
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
10
+ * @license MIT
11
+ */
8
12
 
9
13
  /**
10
14
  * define eslint configurations
@@ -182,6 +186,11 @@ interface CssRules {
182
186
  */
183
187
  "css/no-invalid-properties"?: Linter.RuleEntry<CssNoInvalidProperties>;
184
188
  /**
189
+ * Disallow unmatchable selectors
190
+ * @see https://github.com/eslint/css/blob/main/docs/rules/no-unmatchable-selectors.md
191
+ */
192
+ "css/no-unmatchable-selectors"?: Linter.RuleEntry<[]>;
193
+ /**
185
194
  * Enforce the use of logical properties
186
195
  * @see https://github.com/eslint/css/blob/main/docs/rules/prefer-logical-properties.md
187
196
  */
@@ -211,8 +220,8 @@ type CssNoInvalidProperties = [] | [{
211
220
  allowUnknownVariables?: boolean;
212
221
  }];
213
222
  type CssPreferLogicalProperties = [] | [{
214
- allowProperties?: string[];
215
- allowUnits?: string[];
223
+ allowProperties?: ("bottom" | "border-bottom" | "border-bottom-color" | "border-bottom-left-radius" | "border-bottom-right-radius" | "border-bottom-style" | "border-bottom-width" | "border-left" | "border-left-color" | "border-left-style" | "border-left-width" | "border-right" | "border-right-color" | "border-right-style" | "border-right-width" | "border-top" | "border-top-color" | "border-top-left-radius" | "border-top-right-radius" | "border-top-style" | "border-top-width" | "contain-intrinsic-height" | "contain-intrinsic-width" | "height" | "left" | "margin-bottom" | "margin-left" | "margin-right" | "margin-top" | "max-height" | "max-width" | "min-height" | "min-width" | "overflow-x" | "overflow-y" | "overscroll-behavior-x" | "overscroll-behavior-y" | "padding-bottom" | "padding-left" | "padding-right" | "padding-top" | "right" | "scroll-margin-bottom" | "scroll-margin-left" | "scroll-margin-right" | "scroll-margin-top" | "scroll-padding-bottom" | "scroll-padding-left" | "scroll-padding-right" | "scroll-padding-top" | "top" | "width")[];
224
+ allowUnits?: ("cqh" | "cqw" | "dvh" | "dvw" | "lvh" | "lvw" | "svh" | "svw" | "vh" | "vw")[];
216
225
  }];
217
226
  type CssRelativeFontUnits = [] | [{
218
227
  allowUnits?: ("%" | "cap" | "ch" | "em" | "ex" | "ic" | "lh" | "rcap" | "rch" | "rem" | "rex" | "ric" | "rlh")[];
@@ -231,13 +240,314 @@ type CssSelectorComplexity = [] | [{
231
240
  disallowPseudoElements?: string[];
232
241
  disallowAttributes?: string[];
233
242
  disallowAttributeMatchers?: string[];
234
- [k: string]: unknown | undefined;
235
243
  }];
236
244
  type CssUseBaseline = [] | [{
237
245
  available?: (("widely" | "newly") | number);
238
- allowAtRules?: string[];
239
- allowProperties?: string[];
240
- allowSelectors?: string[];
246
+ allowAtRules?: ("position-try" | "keyframes" | "layer" | "charset" | "container" | "counter-style" | "view-transition" | "font-face" | "font-palette-values" | "font-feature-values" | "function" | "import" | "media" | "namespace" | "page" | "property" | "scope" | "starting-style" | "supports")[];
247
+ allowFunctions?: ("abs" | "sign" | "anchor" | "anchor-size" | "color" | "attr" | "calc" | "calc-size" | "rect" | "color-mix" | "conic-gradient" | "repeating-conic-gradient" | "round" | "counter" | "counters" | "cross-fade" | "cubic-bezier" | "var" | "element" | "exp" | "hypot" | "log" | "pow" | "sqrt" | "blur" | "brightness" | "contrast" | "drop-shadow" | "grayscale" | "hue-rotate" | "invert" | "opacity" | "saturate" | "sepia" | "linear-gradient" | "radial-gradient" | "repeating-linear-gradient" | "repeating-radial-gradient" | "image" | "hsl" | "hwb" | "image-set" | "lab" | "lch" | "light-dark" | "clamp" | "max" | "min" | "ray" | "oklab" | "oklch" | "paint" | "path" | "rem" | "rgb" | "mod" | "env" | "circle" | "ellipse" | "inset" | "polygon" | "xywh" | "steps" | "matrix" | "rotate" | "scale" | "scaleX" | "scaleY" | "skew" | "skewX" | "skewY" | "translate" | "translateX" | "translateY" | "matrix3d" | "perspective" | "rotate3d" | "rotateX" | "rotateY" | "rotateZ" | "scale3d" | "scaleZ" | "translate3d" | "translateZ" | "acos" | "asin" | "atan" | "atan2" | "cos" | "sin" | "tan")[];
248
+ allowMediaConditions?: ("color-gamut" | "device-posture" | "device-aspect-ratio" | "device-height" | "device-width" | "display-mode" | "dynamic-range" | "forced-colors" | "any-hover" | "any-pointer" | "hover" | "pointer" | "inverted-colors" | "aspect-ratio" | "calc" | "color" | "color-index" | "grid" | "height" | "monochrome" | "nested-queries" | "orientation" | "width" | "overflow-block" | "overflow-inline" | "prefers-color-scheme" | "prefers-contrast" | "prefers-reduced-data" | "prefers-reduced-motion" | "prefers-reduced-transparency" | "resolution" | "-webkit-device-pixel-ratio" | "-webkit-max-device-pixel-ratio" | "-webkit-min-device-pixel-ratio" | "scripting" | "-webkit-transform-3d" | "update" | "video-dynamic-range" | "horizontal-viewport-segments" | "vertical-viewport-segments")[];
249
+ allowProperties?: ("accent-color" | "alignment-baseline" | "all" | "anchor-name" | "anchor-scope" | "position-anchor" | "position-area" | "position-try" | "position-try-fallbacks" | "position-try-order" | "position-visibility" | "animation-composition" | "animation" | "animation-delay" | "animation-direction" | "animation-duration" | "animation-fill-mode" | "animation-iteration-count" | "animation-name" | "animation-play-state" | "animation-timing-function" | "appearance" | "aspect-ratio" | "backdrop-filter" | "background" | "background-attachment" | "background-blend-mode" | "background-clip" | "background-color" | "background-image" | "background-origin" | "background-position" | "background-position-x" | "background-position-y" | "background-repeat" | "background-size" | "baseline-shift" | "baseline-source" | "border-image" | "border-image-outset" | "border-image-repeat" | "border-image-slice" | "border-image-source" | "border-image-width" | "border-bottom-left-radius" | "border-bottom-right-radius" | "border-radius" | "border-top-left-radius" | "border-top-right-radius" | "border" | "border-bottom" | "border-bottom-color" | "border-bottom-style" | "border-bottom-width" | "border-color" | "border-left" | "border-left-color" | "border-left-style" | "border-left-width" | "border-right" | "border-right-color" | "border-right-style" | "border-right-width" | "border-style" | "border-top" | "border-top-color" | "border-top-style" | "border-top-width" | "border-width" | "box-decoration-break" | "box-shadow" | "box-sizing" | "caret-color" | "caret-shape" | "clip" | "clip-path" | "color" | "color-adjust" | "color-scheme" | "column-fill" | "column-span" | "contain" | "contain-intrinsic-block-size" | "contain-intrinsic-height" | "contain-intrinsic-inline-size" | "contain-intrinsic-size" | "contain-intrinsic-width" | "container" | "container-name" | "container-type" | "content" | "content-visibility" | "corner-block-end-shape" | "corner-block-start-shape" | "corner-bottom-left-shape" | "corner-bottom-right-shape" | "corner-bottom-shape" | "corner-end-end-shape" | "corner-end-start-shape" | "corner-inline-end-shape" | "corner-inline-start-shape" | "corner-left-shape" | "corner-right-shape" | "corner-shape" | "corner-start-end-shape" | "corner-start-start-shape" | "corner-top-left-shape" | "corner-top-right-shape" | "corner-top-shape" | "counter-set" | "counter-increment" | "counter-reset" | "custom-property" | "display" | "dominant-baseline" | "field-sizing" | "filter" | "align-content" | "align-items" | "align-self" | "flex" | "flex-basis" | "flex-direction" | "flex-flow" | "flex-grow" | "flex-shrink" | "flex-wrap" | "justify-content" | "justify-items" | "order" | "place-content" | "place-items" | "place-self" | "clear" | "float" | "font-family" | "font-feature-settings" | "font-kerning" | "font-language-override" | "font-optical-sizing" | "font-palette" | "font" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-synthesis" | "font-synthesis-position" | "font-synthesis-small-caps" | "font-synthesis-style" | "font-synthesis-weight" | "font-variant" | "font-variant-alternates" | "font-variant-caps" | "font-variant-east-asian" | "font-variant-emoji" | "font-variant-ligatures" | "font-variant-numeric" | "font-variant-position" | "font-variation-settings" | "font-weight" | "font-width" | "forced-color-adjust" | "glyph-orientation-vertical" | "gap" | "grid" | "grid-area" | "grid-auto-columns" | "grid-auto-flow" | "grid-auto-rows" | "grid-column" | "grid-column-end" | "grid-column-start" | "grid-row" | "grid-row-end" | "grid-row-start" | "grid-template" | "grid-template-areas" | "grid-template-columns" | "grid-template-rows" | "justify-self" | "row-gap" | "hanging-punctuation" | "hyphenate-character" | "hyphenate-limit-chars" | "hyphens" | "image-orientation" | "image-rendering" | "ime-mode" | "rotate" | "scale" | "translate" | "initial-letter" | "interactivity" | "interpolate-size" | "isolation" | "direction" | "unicode-bidi" | "letter-spacing" | "line-break" | "line-clamp" | "line-height" | "list-style" | "list-style-image" | "list-style-position" | "list-style-type" | "block-size" | "border-block" | "border-block-color" | "border-block-end" | "border-block-end-color" | "border-block-end-style" | "border-block-end-width" | "border-block-start" | "border-block-start-color" | "border-block-start-style" | "border-block-start-width" | "border-block-style" | "border-block-width" | "border-end-end-radius" | "border-end-start-radius" | "border-inline" | "border-inline-color" | "border-inline-end" | "border-inline-end-color" | "border-inline-end-style" | "border-inline-end-width" | "border-inline-start" | "border-inline-start-color" | "border-inline-start-style" | "border-inline-start-width" | "border-inline-style" | "border-inline-width" | "border-start-end-radius" | "border-start-start-radius" | "inline-size" | "inset" | "inset-block" | "inset-block-end" | "inset-block-start" | "inset-inline" | "inset-inline-end" | "inset-inline-start" | "margin-block" | "margin-block-end" | "margin-block-start" | "margin-inline" | "margin-inline-end" | "margin-inline-start" | "max-block-size" | "max-inline-size" | "min-block-size" | "min-inline-size" | "overflow-block" | "overflow-inline" | "padding-block" | "padding-block-end" | "padding-block-start" | "padding-inline" | "padding-inline-end" | "padding-inline-start" | "margin" | "margin-bottom" | "margin-left" | "margin-right" | "margin-top" | "margin-trim" | "mask-border" | "mask-border-outset" | "mask-border-repeat" | "mask-border-slice" | "mask-border-source" | "mask-border-width" | "mask-type" | "mask" | "mask-clip" | "mask-composite" | "mask-image" | "mask-mode" | "mask-origin" | "mask-position" | "mask-repeat" | "mask-size" | "math-depth" | "math-shift" | "math-style" | "max-height" | "max-width" | "min-height" | "min-width" | "mix-blend-mode" | "offset" | "offset-anchor" | "offset-distance" | "offset-path" | "offset-position" | "offset-rotate" | "column-count" | "column-gap" | "column-rule" | "column-rule-color" | "column-rule-style" | "column-rule-width" | "column-width" | "columns" | "object-fit" | "object-position" | "object-view-box" | "opacity" | "fill-opacity" | "stroke-opacity" | "outline" | "outline-color" | "outline-offset" | "outline-style" | "outline-width" | "overflow-anchor" | "overflow-clip-margin" | "overflow" | "overflow-x" | "overflow-y" | "overflow-wrap" | "overlay" | "overscroll-behavior" | "overscroll-behavior-block" | "overscroll-behavior-inline" | "overscroll-behavior-x" | "overscroll-behavior-y" | "padding" | "padding-bottom" | "padding-left" | "padding-right" | "padding-top" | "page-break-after" | "page-break-before" | "page-break-inside" | "break-after" | "break-before" | "break-inside" | "page" | "paint-order" | "bottom" | "left" | "right" | "top" | "pointer-events" | "position" | "print-color-adjust" | "quotes" | "reading-flow" | "reading-order" | "resize" | "ruby-align" | "ruby-overhang" | "ruby-position" | "scroll-behavior" | "animation-range" | "animation-range-end" | "animation-range-start" | "animation-timeline" | "scroll-timeline" | "scroll-timeline-axis" | "scroll-timeline-name" | "timeline-scope" | "view-timeline" | "view-timeline-axis" | "view-timeline-inset" | "view-timeline-name" | "scroll-initial-target" | "scroll-marker-group" | "scroll-margin" | "scroll-margin-block" | "scroll-margin-block-end" | "scroll-margin-block-start" | "scroll-margin-bottom" | "scroll-margin-inline" | "scroll-margin-inline-end" | "scroll-margin-inline-start" | "scroll-margin-left" | "scroll-margin-right" | "scroll-margin-top" | "scroll-padding" | "scroll-padding-block" | "scroll-padding-block-end" | "scroll-padding-block-start" | "scroll-padding-bottom" | "scroll-padding-inline" | "scroll-padding-inline-end" | "scroll-padding-inline-start" | "scroll-padding-left" | "scroll-padding-right" | "scroll-padding-top" | "scroll-snap-align" | "scroll-snap-stop" | "scroll-snap-type" | "scrollbar-color" | "scrollbar-gutter" | "scrollbar-width" | "shape-image-threshold" | "shape-margin" | "shape-outside" | "speak" | "speak-as" | "clip-rule" | "color-interpolation" | "cx" | "cy" | "d" | "fill" | "fill-rule" | "marker" | "marker-end" | "marker-mid" | "marker-start" | "r" | "rx" | "ry" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-color" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-width" | "text-anchor" | "text-rendering" | "vector-effect" | "x" | "y" | "color-interpolation-filters" | "flood-color" | "flood-opacity" | "lighting-color" | "tab-size" | "border-collapse" | "border-spacing" | "caption-side" | "empty-cells" | "table-layout" | "text-align" | "text-align-last" | "text-autospace" | "text-box" | "text-box-edge" | "text-box-trim" | "text-combine-upright" | "text-decoration" | "text-decoration-color" | "text-decoration-line" | "text-decoration-skip" | "text-decoration-skip-ink" | "text-decoration-style" | "text-decoration-thickness" | "text-emphasis" | "text-emphasis-color" | "text-emphasis-position" | "text-emphasis-style" | "text-indent" | "text-justify" | "text-orientation" | "text-overflow" | "text-shadow" | "text-size-adjust" | "text-spacing-trim" | "-webkit-text-fill-color" | "-webkit-text-stroke" | "-webkit-text-stroke-color" | "-webkit-text-stroke-width" | "text-transform" | "text-underline-offset" | "text-underline-position" | "text-wrap" | "text-wrap-mode" | "text-wrap-style" | "touch-action" | "transform-box" | "transform" | "transform-origin" | "backface-visibility" | "perspective" | "perspective-origin" | "transform-style" | "transition-behavior" | "transition" | "transition-delay" | "transition-duration" | "transition-property" | "transition-timing-function" | "user-select" | "vertical-align" | "view-transition-class" | "view-transition-name" | "visibility" | "white-space" | "white-space-collapse" | "orphans" | "widows" | "height" | "width" | "will-change" | "word-break" | "word-spacing" | "writing-mode" | "z-index" | "zoom")[];
250
+ allowPropertyValues?: {
251
+ position?: ("absolute" | "fixed" | "relative" | "static" | "sticky")[];
252
+ "accent-color"?: ("auto")[];
253
+ "alignment-baseline"?: ("alphabetic" | "baseline" | "central" | "ideographic" | "mathematical" | "middle" | "text-after-edge" | "text-before-edge")[];
254
+ "align-items"?: ("anchor-center")[];
255
+ "align-self"?: ("anchor-center" | "auto" | "normal" | "stretch")[];
256
+ "anchor-name"?: ("none")[];
257
+ "anchor-scope"?: ("all" | "none")[];
258
+ "block-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
259
+ bottom?: ("anchor" | "anchor-size" | "auto")[];
260
+ height?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "stretch" | "auto")[];
261
+ "inline-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
262
+ "inset-block-end"?: ("anchor" | "anchor-size" | "auto")[];
263
+ "inset-block-start"?: ("anchor" | "anchor-size" | "auto")[];
264
+ "inset-block"?: ("anchor" | "anchor-size" | "auto")[];
265
+ "inset-inline-end"?: ("anchor" | "anchor-size" | "auto")[];
266
+ "inset-inline-start"?: ("anchor" | "anchor-size" | "auto")[];
267
+ "inset-inline"?: ("anchor" | "anchor-size" | "auto")[];
268
+ inset?: ("anchor" | "anchor-size" | "auto")[];
269
+ "justify-items"?: ("anchor-center" | "left" | "legacy" | "right")[];
270
+ "justify-self"?: ("anchor-center" | "auto" | "left" | "normal" | "right" | "stretch")[];
271
+ left?: ("anchor" | "anchor-size" | "auto")[];
272
+ "margin-block-end"?: ("anchor-size")[];
273
+ "margin-block-start"?: ("anchor-size")[];
274
+ "margin-block"?: ("anchor-size")[];
275
+ "margin-bottom"?: ("anchor-size" | "auto")[];
276
+ "margin-inline-end"?: ("anchor-size")[];
277
+ "margin-inline-start"?: ("anchor-size")[];
278
+ "margin-inline"?: ("anchor-size")[];
279
+ "margin-left"?: ("anchor-size" | "auto")[];
280
+ "margin-right"?: ("anchor-size" | "auto")[];
281
+ "margin-top"?: ("anchor-size" | "auto")[];
282
+ margin?: ("anchor-size" | "auto")[];
283
+ "max-block-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
284
+ "max-height"?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "none" | "stretch")[];
285
+ "max-inline-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
286
+ "max-width"?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "none" | "stretch")[];
287
+ "min-block-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
288
+ "min-height"?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "auto" | "stretch")[];
289
+ "min-inline-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
290
+ "min-width"?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "auto" | "stretch")[];
291
+ "place-items"?: ("anchor-center")[];
292
+ "place-self"?: ("anchor-center")[];
293
+ "position-anchor"?: ("auto")[];
294
+ "position-area"?: ("block-end" | "block-start" | "bottom" | "center" | "end" | "inline-end" | "inline-start" | "left" | "none" | "right" | "self-block-end" | "self-block-start" | "self-end" | "self-inline-end" | "self-inline-start" | "self-start" | "span-all" | "span-block-end" | "span-block-start" | "span-bottom" | "span-end" | "span-inline-end" | "span-inline-start" | "span-self-block-end" | "span-self-block-start" | "span-self-end" | "span-self-inline-end" | "span-self-inline-start" | "span-self-start" | "span-start" | "span-top" | "span-x-end" | "span-x-self-end" | "span-x-self-start" | "span-x-start" | "span-y-end" | "span-y-self-end" | "span-y-self-start" | "span-y-start" | "start" | "top" | "x-end" | "x-self-end" | "x-self-start" | "x-start" | "y-end" | "y-self-end" | "y-self-start" | "y-start")[];
295
+ "position-try-fallbacks"?: ("flip-block" | "flip-inline" | "flip-start" | "none" | "position-area")[];
296
+ "position-try-order"?: ("most-block-size" | "most-height" | "most-inline-size" | "most-width" | "normal")[];
297
+ "position-visibility"?: ("always" | "anchors-visible" | "no-overflow")[];
298
+ right?: ("anchor" | "anchor-size" | "auto")[];
299
+ top?: ("anchor" | "anchor-size" | "auto")[];
300
+ width?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "stretch" | "auto")[];
301
+ "animation-direction"?: ("alternate" | "alternate-reverse" | "normal" | "reverse")[];
302
+ "animation-duration"?: ("auto")[];
303
+ "animation-fill-mode"?: ("backwards" | "both" | "forwards" | "none")[];
304
+ "animation-iteration-count"?: ("infinite")[];
305
+ "animation-name"?: ("none")[];
306
+ "animation-play-state"?: ("paused" | "running")[];
307
+ "animation-timing-function"?: ("jump")[];
308
+ appearance?: ("auto" | "button" | "checkbox" | "listbox" | "menulist" | "menulist-button" | "meter" | "none" | "progress-bar" | "radio" | "searchfield" | "textarea" | "textfield" | "base-select")[];
309
+ "aspect-ratio"?: ("auto")[];
310
+ "background-attachment"?: ("fixed" | "local" | "scroll")[];
311
+ "background-clip"?: ("border-box" | "content-box" | "padding-box" | "border-area" | "text")[];
312
+ background?: ("background-clip" | "background-origin" | "background-size")[];
313
+ "background-image"?: ("none" | "element" | "gradients" | "image-set")[];
314
+ "background-origin"?: ("border-box" | "content-box" | "padding-box")[];
315
+ "background-position"?: ("bottom" | "center" | "left" | "right" | "top")[];
316
+ "background-repeat"?: ("2-value" | "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space")[];
317
+ "background-size"?: ("auto" | "contain" | "cover")[];
318
+ "baseline-shift"?: ("baseline" | "sub" | "super")[];
319
+ "baseline-source"?: ("auto" | "first" | "last")[];
320
+ "border-image-repeat"?: ("repeat" | "round" | "space" | "stretch")[];
321
+ "border-image-width"?: ("auto")[];
322
+ "border-image"?: ("fill" | "gradient")[];
323
+ "border-bottom-left-radius"?: ("percentages")[];
324
+ "border-bottom-right-radius"?: ("percentages")[];
325
+ "border-radius"?: ("percentages")[];
326
+ "border-top-left-radius"?: ("percentages")[];
327
+ "border-top-right-radius"?: ("percentages")[];
328
+ "border-style"?: ("dashed" | "dotted" | "double" | "groove" | "hidden" | "inset" | "none" | "outset" | "ridge" | "solid")[];
329
+ "box-decoration-break"?: ("clone" | "slice")[];
330
+ "box-shadow"?: ("inset")[];
331
+ "box-sizing"?: ("border-box" | "content-box")[];
332
+ "caret-shape"?: ("auto" | "bar" | "block" | "underscore")[];
333
+ clip?: ("auto")[];
334
+ "clip-path"?: ("path" | "fill-box" | "stroke-box" | "view-box")[];
335
+ "color-scheme"?: ("dark" | "light" | "normal" | "only")[];
336
+ "break-after"?: ("avoid-column" | "column" | "always" | "auto" | "avoid" | "avoid-page" | "left" | "page" | "recto" | "right" | "verso")[];
337
+ "break-before"?: ("avoid-column" | "column" | "always" | "auto" | "avoid" | "avoid-page" | "left" | "page" | "recto" | "right" | "verso")[];
338
+ "break-inside"?: ("avoid-column" | "auto" | "avoid" | "avoid-page")[];
339
+ "column-fill"?: ("auto" | "balance")[];
340
+ "column-span"?: ("all" | "none")[];
341
+ contain?: ("content" | "none" | "strict" | "inline-size" | "layout" | "paint" | "size" | "style")[];
342
+ "contain-intrinsic-block-size"?: ("none")[];
343
+ "contain-intrinsic-height"?: ("none")[];
344
+ "contain-intrinsic-inline-size"?: ("none")[];
345
+ "contain-intrinsic-size"?: ("none")[];
346
+ "contain-intrinsic-width"?: ("none")[];
347
+ "container-name"?: ("none")[];
348
+ "container-type"?: ("inline-size" | "normal" | "size" | "scroll-state")[];
349
+ content?: ("gradient" | "none" | "normal" | "url" | "image-set")[];
350
+ "content-visibility"?: ("auto" | "hidden" | "visible")[];
351
+ "counter-reset"?: ("reversed" | "list-item" | "none")[];
352
+ "counter-set"?: ("list-item" | "none")[];
353
+ "counter-increment"?: ("list-item" | "none")[];
354
+ "image-rendering"?: ("crisp-edges" | "auto" | "pixelated" | "smooth")[];
355
+ "text-overflow"?: ("string" | "clip" | "ellipsis")[];
356
+ display?: ("block" | "inline" | "inline-block" | "none" | "contents" | "flow-root" | "list-item" | "ruby" | "ruby-base" | "ruby-base-container" | "ruby-text" | "ruby-text-container" | "inline-table" | "table" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row" | "table-row-group" | "flex" | "inline-flex" | "grid" | "inline-grid" | "math")[];
357
+ "ruby-position"?: ("alternate" | "inter-character" | "over" | "under")[];
358
+ "dominant-baseline"?: ("alphabetic" | "auto" | "central" | "hanging" | "ideographic" | "mathematical" | "middle")[];
359
+ "field-sizing"?: ("content" | "fixed")[];
360
+ filter?: ("blur" | "brightness" | "contrast" | "drop-shadow" | "grayscale" | "hue-rotate" | "invert" | "opacity" | "saturate" | "sepia")[];
361
+ "align-content"?: ("normal")[];
362
+ "flex-basis"?: ("auto" | "content" | "fit-content" | "max-content" | "min-content")[];
363
+ "flex-direction"?: ("column" | "column-reverse" | "row" | "row-reverse")[];
364
+ "flex-wrap"?: ("nowrap" | "wrap" | "wrap-reverse")[];
365
+ flex?: ("none")[];
366
+ "justify-content"?: ("left" | "normal" | "right")[];
367
+ clear?: ("both" | "left" | "right" | "inline-end" | "inline-start")[];
368
+ float?: ("left" | "none" | "right" | "inline-end" | "inline-start")[];
369
+ "font-family"?: ("math" | "system-ui" | "ui-monospace" | "ui-rounded" | "ui-sans-serif" | "ui-serif")[];
370
+ "font-feature-settings"?: ("normal")[];
371
+ "font-kerning"?: ("auto" | "none" | "normal")[];
372
+ "font-optical-sizing"?: ("auto" | "none")[];
373
+ "font-palette"?: ("dark" | "light" | "normal")[];
374
+ font?: ("caption" | "icon" | "menu" | "message-box" | "small-caption" | "status-bar")[];
375
+ "font-size"?: ("xxx-large" | "math")[];
376
+ "font-size-adjust"?: ("from-font" | "none" | "two-values")[];
377
+ "font-stretch"?: ("percentage")[];
378
+ "font-style"?: ("italic" | "normal" | "oblique-angle")[];
379
+ "font-synthesis"?: ("position" | "small-caps" | "style" | "weight")[];
380
+ "font-synthesis-position"?: ("auto" | "none")[];
381
+ "font-synthesis-small-caps"?: ("auto" | "none")[];
382
+ "font-synthesis-style"?: ("auto" | "none")[];
383
+ "font-synthesis-weight"?: ("auto" | "none")[];
384
+ "font-variant"?: ("historical-forms" | "none" | "normal" | "sub" | "super")[];
385
+ "font-variant-alternates"?: ("annotation" | "historical-forms" | "normal" | "ornaments" | "styleset" | "stylistic" | "swash")[];
386
+ "font-variant-caps"?: ("all-petite-caps" | "all-small-caps" | "normal" | "petite-caps" | "small-caps" | "titling-caps" | "unicase")[];
387
+ "font-variant-east-asian"?: ("full-width" | "jis04" | "jis78" | "jis83" | "jis90" | "normal" | "proportional-width" | "ruby" | "simplified" | "traditional")[];
388
+ "font-variant-emoji"?: ("emoji" | "normal" | "text" | "unicode")[];
389
+ "font-variant-ligatures"?: ("common-ligatures" | "contextual" | "discretionary-ligatures" | "historical-ligatures" | "no-common-ligatures" | "no-contextual" | "no-discretionary-ligatures" | "no-historical-ligatures" | "none" | "normal")[];
390
+ "font-variant-numeric"?: ("diagonal-fractions" | "lining-nums" | "normal" | "oldstyle-nums" | "ordinal" | "proportional-nums" | "slashed-zero" | "stacked-fractions" | "tabular-nums")[];
391
+ "font-variant-position"?: ("normal" | "sub" | "super")[];
392
+ "font-weight"?: ("bold" | "bolder" | "lighter" | "normal" | "number")[];
393
+ "font-width"?: ("condensed" | "expanded" | "extra-condensed" | "extra-expanded" | "normal" | "semi-condensed" | "semi-expanded" | "ultra-condensed" | "ultra-expanded")[];
394
+ "forced-color-adjust"?: ("auto" | "none" | "preserve-parent-color")[];
395
+ gap?: ("normal")[];
396
+ "grid-auto-flow"?: ("column" | "dense" | "row")[];
397
+ "grid-template-areas"?: ("none")[];
398
+ "grid-template-columns"?: ("auto" | "fit-content" | "max-content" | "min-content" | "minmax" | "none" | "repeat" | "animation" | "masonry" | "subgrid")[];
399
+ "grid-template-rows"?: ("auto" | "fit-content" | "max-content" | "min-content" | "minmax" | "none" | "repeat" | "animation" | "masonry" | "subgrid")[];
400
+ "grid-template"?: ("none")[];
401
+ "row-gap"?: ("normal")[];
402
+ "hanging-punctuation"?: ("allow-end" | "first" | "last" | "none")[];
403
+ "hyphenate-character"?: ("auto")[];
404
+ "hyphenate-limit-chars"?: ("auto")[];
405
+ hyphens?: ("auto")[];
406
+ "image-orientation"?: ("from-image" | "none")[];
407
+ rotate?: ("none")[];
408
+ scale?: ("none")[];
409
+ translate?: ("none")[];
410
+ "initial-letter"?: ("normal")[];
411
+ interactivity?: ("auto" | "inert")[];
412
+ "interpolate-size"?: ("allow-keywords" | "numeric-only")[];
413
+ direction?: ("ltr" | "rtl")[];
414
+ "unicode-bidi"?: ("bidi-override" | "embed" | "isolate" | "isolate-override" | "normal" | "plaintext")[];
415
+ "letter-spacing"?: ("normal")[];
416
+ "line-break"?: ("anywhere" | "auto" | "loose" | "normal" | "strict")[];
417
+ "line-clamp"?: ("none")[];
418
+ "line-height"?: ("normal")[];
419
+ "list-style-image"?: ("none")[];
420
+ "list-style-position"?: ("inside" | "outside")[];
421
+ "list-style-type"?: ("arabic-indic" | "armenian" | "bengali" | "cambodian" | "circle" | "cjk-decimal" | "cjk-earthly-branch" | "cjk-heavenly-stem" | "cjk-ideographic" | "decimal" | "decimal-leading-zero" | "devanagari" | "disc" | "disclosure-closed" | "disclosure-open" | "ethiopic-numeric" | "georgian" | "gujarati" | "gurmukhi" | "hebrew" | "hiragana" | "hiragana-iroha" | "japanese-formal" | "japanese-informal" | "kannada" | "katakana" | "katakana-iroha" | "khmer" | "korean-hangul-formal" | "korean-hanja-formal" | "korean-hanja-informal" | "lao" | "lower-alpha" | "lower-armenian" | "lower-greek" | "lower-latin" | "lower-roman" | "malayalam" | "mongolian" | "myanmar" | "none" | "oriya" | "persian" | "simp-chinese-formal" | "simp-chinese-informal" | "square" | "string" | "symbols" | "tamil" | "telugu" | "thai" | "tibetan" | "trad-chinese-formal" | "trad-chinese-informal" | "upper-alpha" | "upper-armenian" | "upper-latin" | "upper-roman")[];
422
+ "list-style"?: ("symbols")[];
423
+ "overflow-block"?: ("overlay")[];
424
+ "overflow-inline"?: ("overlay")[];
425
+ "margin-trim"?: ("block" | "block-end" | "block-start" | "inline" | "inline-end" | "inline-start" | "none")[];
426
+ "mask-type"?: ("alpha" | "luminance")[];
427
+ "mask-clip"?: ("border" | "content" | "padding" | "text")[];
428
+ "mask-composite"?: ("add" | "exclude" | "intersect" | "subtract")[];
429
+ "mask-mode"?: ("alpha" | "luminance" | "match-source")[];
430
+ "mask-origin"?: ("border" | "content" | "fill-box" | "padding" | "stroke-box" | "view-box")[];
431
+ "text-transform"?: ("math-auto" | "capitalize" | "full-size-kana" | "full-width" | "lowercase" | "none" | "uppercase")[];
432
+ "mix-blend-mode"?: ("plus-darker" | "plus-lighter")[];
433
+ "offset-anchor"?: ("auto" | "bottom" | "center" | "left" | "right" | "top")[];
434
+ "offset-path"?: ("border-box" | "content-box" | "fill-box" | "margin-box" | "none" | "padding-box" | "path" | "ray" | "stroke-box" | "url" | "view-box")[];
435
+ "offset-position"?: ("auto" | "bottom" | "center" | "left" | "normal" | "right" | "top")[];
436
+ "offset-rotate"?: ("auto" | "reverse")[];
437
+ "column-count"?: ("auto")[];
438
+ "column-gap"?: ("normal")[];
439
+ "column-width"?: ("auto")[];
440
+ "object-fit"?: ("contain" | "cover" | "fill" | "none" | "scale-down")[];
441
+ "object-view-box"?: ("none")[];
442
+ opacity?: ("percentages")[];
443
+ "outline-style"?: ("auto" | "dashed" | "dotted" | "double" | "groove" | "inset" | "none" | "outset" | "ridge" | "solid")[];
444
+ "overflow-anchor"?: ("auto" | "none")[];
445
+ "overflow-x"?: ("clip" | "auto" | "hidden" | "scroll" | "visible")[];
446
+ "overflow-y"?: ("clip" | "auto" | "hidden" | "scroll" | "visible")[];
447
+ overflow?: ("clip" | "auto" | "hidden" | "scroll" | "visible")[];
448
+ "overflow-clip-margin"?: ("border-box" | "content-box" | "padding-box")[];
449
+ "overflow-wrap"?: ("anywhere" | "break-word" | "normal")[];
450
+ overlay?: ("auto" | "none")[];
451
+ "overscroll-behavior-block"?: ("auto" | "contain" | "none")[];
452
+ "overscroll-behavior-inline"?: ("auto" | "contain" | "none")[];
453
+ "overscroll-behavior-x"?: ("auto" | "contain" | "none")[];
454
+ "overscroll-behavior-y"?: ("auto" | "contain" | "none")[];
455
+ "overscroll-behavior"?: ("auto" | "contain" | "none")[];
456
+ "page-break-after"?: ("always" | "auto" | "avoid" | "left" | "right")[];
457
+ "page-break-before"?: ("always" | "auto" | "avoid" | "left" | "right")[];
458
+ "page-break-inside"?: ("auto" | "avoid")[];
459
+ "print-color-adjust"?: ("economy" | "exact")[];
460
+ quotes?: ("auto" | "none")[];
461
+ "reading-flow"?: ("flex-flow" | "flex-visual" | "grid-columns" | "grid-order" | "grid-rows" | "normal" | "source-order")[];
462
+ resize?: ("block" | "inline")[];
463
+ "ruby-align"?: ("center" | "space-around" | "space-between" | "start")[];
464
+ "ruby-overhang"?: ("auto" | "none")[];
465
+ "scroll-behavior"?: ("auto" | "smooth")[];
466
+ "animation-range-end"?: ("normal")[];
467
+ "animation-range-start"?: ("normal")[];
468
+ "animation-timeline"?: ("scroll" | "view")[];
469
+ "scroll-timeline-axis"?: ("block" | "inline" | "x" | "y")[];
470
+ "timeline-scope"?: ("all" | "none")[];
471
+ "view-timeline-axis"?: ("block" | "inline" | "x" | "y")[];
472
+ "view-timeline-inset"?: ("auto")[];
473
+ "scroll-initial-target"?: ("nearest" | "none")[];
474
+ "scroll-marker-group"?: ("after" | "before" | "none")[];
475
+ "scroll-padding-block-end"?: ("auto")[];
476
+ "scroll-padding-block-start"?: ("auto")[];
477
+ "scroll-padding-block"?: ("auto")[];
478
+ "scroll-padding-inline-end"?: ("auto")[];
479
+ "scroll-padding-inline-start"?: ("auto")[];
480
+ "scroll-padding-inline"?: ("auto")[];
481
+ "scroll-padding"?: ("auto")[];
482
+ "scroll-snap-align"?: ("center" | "end" | "none" | "start")[];
483
+ "scroll-snap-stop"?: ("always" | "normal")[];
484
+ "scroll-snap-type"?: ("block" | "both" | "inline" | "none" | "x" | "y")[];
485
+ "scrollbar-color"?: ("auto")[];
486
+ "scrollbar-gutter"?: ("auto" | "stable")[];
487
+ "scrollbar-width"?: ("auto" | "none" | "thin")[];
488
+ "shape-image-threshold"?: ("percentages")[];
489
+ "shape-outside"?: ("circle" | "gradient" | "image" | "inset" | "none" | "path" | "polygon")[];
490
+ "speak-as"?: ("digits" | "literal-punctuation" | "no-punctuation" | "normal" | "spell-out")[];
491
+ "clip-rule"?: ("evenodd" | "nonzero")[];
492
+ "color-interpolation"?: ("linearGradient" | "sRGB")[];
493
+ "fill-rule"?: ("evenodd" | "nonzero")[];
494
+ "stroke-dasharray"?: ("none")[];
495
+ "stroke-linecap"?: ("butt" | "round" | "square")[];
496
+ "stroke-linejoin"?: ("bevel" | "miter" | "round")[];
497
+ "text-rendering"?: ("auto" | "geometricPrecision")[];
498
+ "color-interpolation-filters"?: ("auto" | "linearRGB" | "sRGB")[];
499
+ "tab-size"?: ("length")[];
500
+ "border-collapse"?: ("collapse" | "separate")[];
501
+ "caption-side"?: ("bottom" | "bottom-outside" | "top" | "top-outside")[];
502
+ "empty-cells"?: ("hide" | "show")[];
503
+ "table-layout"?: ("auto" | "fixed")[];
504
+ "text-align"?: ("center" | "end" | "justify" | "left" | "match-parent" | "right" | "start")[];
505
+ "text-align-last"?: ("auto")[];
506
+ "text-autospace"?: ("auto" | "ideograph-alpha" | "ideograph-numeric" | "insert" | "no-autospace" | "normal" | "punctuation" | "replace")[];
507
+ "text-box-edge"?: ("auto")[];
508
+ "text-box-trim"?: ("none" | "trim-both" | "trim-end" | "trim-start")[];
509
+ "text-box"?: ("normal")[];
510
+ "text-combine-upright"?: ("all" | "none")[];
511
+ "text-decoration-line"?: ("grammar-error" | "line-through" | "none" | "overline" | "spelling-error" | "underline" | "blink")[];
512
+ "text-decoration-skip-ink"?: ("all" | "auto" | "none")[];
513
+ "text-decoration-skip"?: ("auto" | "none")[];
514
+ "text-decoration-style"?: ("wavy")[];
515
+ "text-decoration-thickness"?: ("auto" | "from-font" | "percentage")[];
516
+ "text-emphasis-position"?: ("auto" | "left" | "over" | "right" | "under")[];
517
+ "text-emphasis-style"?: ("circle" | "dot" | "double-circle" | "filled" | "none" | "sesame" | "triangle")[];
518
+ "text-indent"?: ("each-line" | "hanging")[];
519
+ "text-justify"?: ("auto" | "inter-character" | "inter-word" | "none")[];
520
+ "text-orientation"?: ("mixed" | "sideways" | "upright")[];
521
+ "text-size-adjust"?: ("auto" | "none" | "percentages")[];
522
+ "text-spacing-trim"?: ("normal" | "space-all" | "space-first" | "trim-start")[];
523
+ "text-underline-offset"?: ("auto" | "percentage")[];
524
+ "text-underline-position"?: ("auto" | "from-font" | "left" | "right" | "under")[];
525
+ "text-wrap"?: ("wrap" | "balance" | "nowrap" | "pretty" | "stable")[];
526
+ "text-wrap-mode"?: ("nowrap" | "wrap")[];
527
+ "text-wrap-style"?: ("auto" | "balance" | "pretty" | "stable")[];
528
+ "touch-action"?: ("manipulation" | "none" | "pan-down" | "pan-left" | "pan-right" | "pan-up" | "pan-x" | "pan-y" | "pinch-zoom")[];
529
+ "transform-box"?: ("border-box" | "content-box" | "fill-box" | "stroke-box" | "view-box")[];
530
+ "transform-origin"?: ("bottom" | "center" | "left" | "right" | "top")[];
531
+ "perspective-origin"?: ("bottom" | "center" | "left" | "right" | "top")[];
532
+ perspective?: ("none")[];
533
+ transform?: ("3d")[];
534
+ transition?: ("transition-behavior")[];
535
+ "transition-property"?: ("all" | "none")[];
536
+ "transition-timing-function"?: ("jump")[];
537
+ "user-select"?: ("all" | "auto" | "none" | "text")[];
538
+ "vertical-align"?: ("baseline" | "bottom" | "middle" | "sub" | "super" | "text-bottom" | "text-top" | "top")[];
539
+ "view-transition-class"?: ("none")[];
540
+ "view-transition-name"?: ("match-element" | "none")[];
541
+ visibility?: ("collapse" | "hidden" | "visible")[];
542
+ "white-space"?: ("break-spaces" | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap")[];
543
+ "white-space-collapse"?: ("break-spaces" | "collapse" | "preserve" | "preserve-breaks" | "preserve-spaces")[];
544
+ "will-change"?: ("auto" | "contents" | "scroll-position")[];
545
+ "word-break"?: ("break-all" | "keep-all" | "normal" | "auto-phrase" | "break-word")[];
546
+ "word-spacing"?: ("normal")[];
547
+ "writing-mode"?: ("horizontal-tb" | "sideways-lr" | "sideways-rl" | "vertical-lr" | "vertical-rl" | "lr" | "lr-tb" | "rl" | "rl-tb" | "tb" | "tb-rl")[];
548
+ "z-index"?: ("auto")[];
549
+ };
550
+ allowSelectors?: ("active-view-transition" | "active-view-transition-type" | "autofill" | "defined" | "backdrop" | "after" | "before" | "column" | "checkmark" | "picker" | "picker-icon" | "default" | "details-content" | "dir" | "empty" | "file-selector-button" | "first-letter" | "first-line" | "focus-visible" | "focus-within" | "in-range" | "invalid" | "optional" | "out-of-range" | "required" | "valid" | "fullscreen" | "has" | "has-slotted" | "heading" | "headingfunction" | "highlight" | "host" | "hostfunction" | "host-context" | "indeterminate" | "checked" | "disabled" | "enabled" | "is" | "lang" | "any-link" | "link" | "visited" | "marker" | "buffering" | "muted" | "paused" | "playing" | "seeking" | "stalled" | "volume-locked" | "modal" | "namespace" | "nesting" | "not" | "first-child" | "last-child" | "nth-child" | "nth-last-child" | "only-child" | "first-of-type" | "last-of-type" | "nth-last-of-type" | "nth-of-type" | "only-of-type" | "open" | "first" | "left" | "right" | "picture-in-picture" | "placeholder" | "placeholder-shown" | "popover-open" | "read-only" | "read-write" | "root" | "scope" | "scroll-button" | "scroll-marker" | "scroll-marker-group" | "selection" | "attribute" | "child" | "class" | "descendant" | "id" | "list" | "next-sibling" | "subsequent-sibling" | "type" | "universal" | "part" | "slotted" | "grammar-error" | "spelling-error" | "state" | "target" | "target-text" | "future" | "past" | "active" | "focus" | "hover" | "user-invalid" | "user-valid" | "view-transition" | "view-transition-group" | "view-transition-image-pair" | "view-transition-new" | "view-transition-old" | "cue" | "xr-overlay" | "where")[];
241
551
  }];
242
552
  type CssUseLayers = [] | [{
243
553
  allowUnnamedLayers?: boolean;
@@ -659,6 +969,7 @@ type HtmlEslintIndent = [] | [("tab" | number)] | [("tab" | number), {
659
969
  tagChildrenIndent?: {
660
970
  [k: string]: number;
661
971
  };
972
+ ignoreComment?: boolean;
662
973
  }];
663
974
  type HtmlEslintMaxElementDepth = [] | [{
664
975
  max: number;
@@ -4329,6 +4640,11 @@ interface JsdocRules {
4329
4640
  */
4330
4641
  "jsdoc/require-property-type"?: Linter.RuleEntry<[]>;
4331
4642
  /**
4643
+ * Requires that Promise rejections are documented with `@rejects` tags.
4644
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-rejects.md#repos-sticky-header
4645
+ */
4646
+ "jsdoc/require-rejects"?: Linter.RuleEntry<JsdocRequireRejects>;
4647
+ /**
4332
4648
  * Requires that returns are documented with `@returns`.
4333
4649
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns.md#repos-sticky-header
4334
4650
  */
@@ -4469,6 +4785,7 @@ type JsdocCheckExamples = [] | [{
4469
4785
  reportUnusedDisableDirectives?: boolean;
4470
4786
  }];
4471
4787
  type JsdocCheckIndentation = [] | [{
4788
+ allowIndentedSections?: boolean;
4472
4789
  excludeTags?: string[];
4473
4790
  }];
4474
4791
  type JsdocCheckLineAlignment = [] | [("always" | "never" | "any")] | [("always" | "never" | "any"), {
@@ -4780,6 +5097,13 @@ type JsdocRequireParamType = [] | [{
4780
5097
  defaultDestructuredRootType?: string;
4781
5098
  setDefaultDestructuredRootType?: boolean;
4782
5099
  }];
5100
+ type JsdocRequireRejects = [] | [{
5101
+ contexts?: (string | {
5102
+ comment?: string;
5103
+ context?: string;
5104
+ })[];
5105
+ exemptedBy?: string[];
5106
+ }];
4783
5107
  type JsdocRequireReturns = [] | [{
4784
5108
  checkConstructors?: boolean;
4785
5109
  checkGetters?: boolean;
@@ -4860,6 +5184,9 @@ type JsdocSortTags = [] | [{
4860
5184
  linesBetween?: number;
4861
5185
  reportIntraTagGroupSpacing?: boolean;
4862
5186
  reportTagGroupSpacing?: boolean;
5187
+ tagExceptions?: {
5188
+ [k: string]: number;
5189
+ };
4863
5190
  tagSequence?: {
4864
5191
  tags?: string[];
4865
5192
  }[];
@@ -5944,7 +6271,6 @@ type MarkdownPreferencesSortDefinitions = [] | [{
5944
6271
  match: (string | [string, ...(string)[]]);
5945
6272
  sort: ("alphabetical" | "ignore");
5946
6273
  })[];
5947
- alphabetical?: boolean;
5948
6274
  }];
5949
6275
  type MarkdownPreferencesStrikethroughDelimitersStyle = [] | [{
5950
6276
  delimiter?: ("~" | "~~");
@@ -6275,7 +6601,7 @@ interface ReactRules {
6275
6601
  */
6276
6602
  "react-hooks/use-memo"?: Linter.RuleEntry<ReactHooksUseMemo>;
6277
6603
  /**
6278
- * Validates that useMemos always return a value. See [`useMemo()` docs](https://react.dev/reference/react/useMemo) for more information.
6604
+ * Validates that useMemos always return a value and that the result of the useMemo is used by the component/hook. See [`useMemo()` docs](https://react.dev/reference/react/useMemo) for more information.
6279
6605
  */
6280
6606
  "react-hooks/void-use-memo"?: Linter.RuleEntry<ReactHooksVoidUseMemo>;
6281
6607
  "react-refresh/only-export-components"?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>;
@@ -10570,6 +10896,11 @@ interface TypescriptRules {
10570
10896
  */
10571
10897
  "@typescript-eslint/no-unused-expressions"?: Linter.RuleEntry<TypescriptEslintNoUnusedExpressions>;
10572
10898
  /**
10899
+ * Disallow unused private class members
10900
+ * @see https://typescript-eslint.io/rules/no-unused-private-class-members
10901
+ */
10902
+ "@typescript-eslint/no-unused-private-class-members"?: Linter.RuleEntry<[]>;
10903
+ /**
10573
10904
  * Disallow unused variables
10574
10905
  * @see https://typescript-eslint.io/rules/no-unused-vars
10575
10906
  */
@@ -12561,6 +12892,11 @@ type UnicornTemplateIndent = [] | [{
12561
12892
  //#endregion
12562
12893
  //#region src/types/gens/vitest.d.ts
12563
12894
  interface VitestRules {
12895
+ /**
12896
+ * enforce using `.each` or `.for` consistently
12897
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/consistent-each-for.md
12898
+ */
12899
+ "vitest/consistent-each-for"?: Linter.RuleEntry<VitestConsistentEachFor>;
12564
12900
  /**
12565
12901
  * require test file pattern
12566
12902
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/consistent-test-filename.md
@@ -12778,7 +13114,7 @@ interface VitestRules {
12778
13114
  */
12779
13115
  "vitest/prefer-each"?: Linter.RuleEntry<[]>;
12780
13116
  /**
12781
- * enforce using the built-in quality matchers
13117
+ * enforce using the built-in equality matchers
12782
13118
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-equality-matcher.md
12783
13119
  */
12784
13120
  "vitest/prefer-equality-matcher"?: Linter.RuleEntry<[]>;
@@ -12888,11 +13224,21 @@ interface VitestRules {
12888
13224
  */
12889
13225
  "vitest/prefer-vi-mocked"?: Linter.RuleEntry<[]>;
12890
13226
  /**
13227
+ * ensure that every `expect.poll` call is awaited
13228
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-awaited-expect-poll.md
13229
+ */
13230
+ "vitest/require-awaited-expect-poll"?: Linter.RuleEntry<[]>;
13231
+ /**
12891
13232
  * require setup and teardown to be within a hook
12892
13233
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-hook.md
12893
13234
  */
12894
13235
  "vitest/require-hook"?: Linter.RuleEntry<VitestRequireHook>;
12895
13236
  /**
13237
+ * require usage of import in vi.mock()
13238
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-import-vi-mock.md
13239
+ */
13240
+ "vitest/require-import-vi-mock"?: Linter.RuleEntry<[]>;
13241
+ /**
12896
13242
  * require local Test Context for concurrent snapshot tests
12897
13243
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-local-test-context-for-concurrent-snapshots.md
12898
13244
  */
@@ -12938,6 +13284,12 @@ interface VitestRules {
12938
13284
  */
12939
13285
  "vitest/warn-todo"?: Linter.RuleEntry<[]>;
12940
13286
  }
13287
+ type VitestConsistentEachFor = [] | [{
13288
+ test?: ("each" | "for");
13289
+ it?: ("each" | "for");
13290
+ describe?: ("each" | "for");
13291
+ suite?: ("each" | "for");
13292
+ }];
12941
13293
  type VitestConsistentTestFilename = [] | [{
12942
13294
  pattern?: string;
12943
13295
  allTestPattern?: string;
@@ -12963,7 +13315,7 @@ type VitestNoFocusedTests = [] | [{
12963
13315
  fixable?: boolean;
12964
13316
  }];
12965
13317
  type VitestNoHooks = [] | [{
12966
- allow?: unknown[];
13318
+ allow?: ("beforeAll" | "beforeEach" | "afterAll" | "afterEach")[];
12967
13319
  }];
12968
13320
  type VitestNoLargeSnapshots = [] | [{
12969
13321
  maxSize?: number;
@@ -13658,6 +14010,11 @@ interface VueRules {
13658
14010
  */
13659
14011
  "vue/no-duplicate-attributes"?: Linter.RuleEntry<VueNoDuplicateAttributes>;
13660
14012
  /**
14013
+ * disallow duplication of class names in class attributes
14014
+ * @see https://eslint.vuejs.org/rules/no-duplicate-class-names.html
14015
+ */
14016
+ "vue/no-duplicate-class-names"?: Linter.RuleEntry<[]>;
14017
+ /**
13661
14018
  * disallow the `<template>` `<script>` `<style>` block to be empty
13662
14019
  * @see https://eslint.vuejs.org/rules/no-empty-component-block.html
13663
14020
  */
@@ -16059,6 +16416,16 @@ type YmlSpacedComment = [] | [("always" | "never")] | [("always" | "never"), {
16059
16416
  markers?: string[];
16060
16417
  }];
16061
16418
  //#endregion
16419
+ //#region src/types/gens/oxlint.d.ts
16420
+ interface OxlintRules {}
16421
+ //#endregion
16422
+ //#region src/types/gens/eslint.d.ts
16423
+ declare module "eslint" {
16424
+ namespace Linter {
16425
+ interface RulesRecord extends CommentsRules, CssRules, DepsRules, HtmlRules, ImportsRules, JavascriptRules, JsdocRules, JsoncRules, MarkdownRules, OxlintRules, PrettierRules, PromiseRules, ReactRules, RegexpRules, StylisticRules, SvelteRules, TomlRules, TypescriptRules, UnicornRules, VitestRules, VueRules, YmlRules {}
16426
+ }
16427
+ }
16428
+ //#endregion
16062
16429
  //#region src/configs/comments.d.ts
16063
16430
  /**
16064
16431
  * comments preset options
@@ -16332,6 +16699,28 @@ interface MarkdownOptions {
16332
16699
  declare function markdown(options?: MarkdownOptions & OverridesOptions<MarkdownRules>): Promise<Linter.Config[]>;
16333
16700
  declare const md: typeof markdown;
16334
16701
  //#endregion
16702
+ //#region src/configs/oxlint.d.ts
16703
+ /**
16704
+ * Oxlint configuration options
16705
+ */
16706
+ interface OxlintOptions {
16707
+ /**
16708
+ * oxlint config file path
16709
+ */
16710
+ configFile?: string;
16711
+ /**
16712
+ * enable nursery rules
16713
+ */
16714
+ withNursery?: boolean;
16715
+ }
16716
+ /**
16717
+ * `eslint-plugin-oxlint` and overrides configuration options
16718
+ *
16719
+ * @param {OxlintOptions & OverridesOptions} options - eslint configuration options for oxlint
16720
+ * @returns {Promise<Linter.Config[]>} eslint flat configurations with `eslint-plugin-oxlint` and overrides
16721
+ */
16722
+ declare function oxlint(options?: OxlintOptions & OverridesOptions): Promise<Linter.Config[]>;
16723
+ //#endregion
16335
16724
  //#region src/configs/prettier.d.ts
16336
16725
  /**
16337
16726
  * Prettier configuration options
@@ -16643,4 +17032,4 @@ interface YmlOptions {
16643
17032
  declare function yml(options?: YmlOptions & OverridesOptions<YmlRules>): Promise<Linter.Config[]>;
16644
17033
  declare const yaml: typeof yml;
16645
17034
  //#endregion
16646
- export { CommentsOptions, CommentsRules, CssOptions, CssRules, DepsOptions, DepsRules, HtmlOptions, HtmlRules, ImportsOptions, ImportsRules, JavaScriptOptions, JavascriptRules, JsDocumentOptions, JsdocRules, JsoncOptions, JsoncRules, MarkdownOptions, MarkdownRules, OverridesOptions, PrettierOptions, PrettierRules, PromiseOptions, PromiseRules, ReactOptions, ReactRules, RegexpOptions, RegexpRules, StylisticOptions, StylisticRules, SvelteRules, SvelteScriptOptions, TomlOptions, TomlRules, TypeScriptOptions, TypeScriptParserOptions, TypeScriptProjectServiceOptions, TypescriptRules, UnicornOptions, UnicornRules, VitestOptions, VitestRules, VueI18nOptions, VueRules, VueScriptOptions, YmlOptions, YmlRules, comments, css, defineConfig, deps, html, imports, javascript, jsdoc, jsonc, markdown, md, prettier, promise, react, regexp, stylistic, svelte, toml, typescript, unicorn, vitest, vue, yaml, yml };
17035
+ export { CommentsOptions, CommentsRules, CssOptions, CssRules, DepsOptions, DepsRules, HtmlOptions, HtmlRules, ImportsOptions, ImportsRules, JavaScriptOptions, JavascriptRules, JsDocumentOptions, JsdocRules, JsoncOptions, JsoncRules, MarkdownOptions, MarkdownRules, OverridesOptions, OxlintOptions, PrettierOptions, PrettierRules, PromiseOptions, PromiseRules, ReactOptions, ReactRules, RegexpOptions, RegexpRules, StylisticOptions, StylisticRules, SvelteRules, SvelteScriptOptions, TomlOptions, TomlRules, TypeScriptOptions, TypeScriptParserOptions, TypeScriptProjectServiceOptions, TypescriptRules, UnicornOptions, UnicornRules, VitestOptions, VitestRules, VueI18nOptions, VueRules, VueScriptOptions, YmlOptions, YmlRules, comments, css, defineConfig, deps, html, imports, javascript, jsdoc, jsonc, markdown, md, oxlint, prettier, promise, react, regexp, stylistic, svelte, toml, typescript, unicorn, vitest, vue, yaml, yml };
@@ -6,6 +6,10 @@ import { mergeProcessors, processorPassThrough } from "eslint-merge-processors";
6
6
 
7
7
  //#region src/config.ts
8
8
  /**
9
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
10
+ * @license MIT
11
+ */
12
+ /**
9
13
  * define eslint configurations
10
14
  *
11
15
  * @param {Awaitable<Linter.Config | Linter.Config[]>[]} configs - eslint flat configurations
@@ -71,6 +75,10 @@ const GLOB_TESTS_TYPE = [`**/*.test-d.${SRC_EXT}`, `**/*.spec-d.${SRC_EXT}`];
71
75
  //#endregion
72
76
  //#region src/utils.ts
73
77
  /**
78
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
79
+ * @license MIT
80
+ */
81
+ /**
74
82
  * load eslint plugin
75
83
  *
76
84
  * @typeParam T - plugin type
@@ -111,6 +119,10 @@ function getGlobSourceFiles(useTypeScript = false) {
111
119
  //#endregion
112
120
  //#region src/configs/comments.ts
113
121
  /**
122
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
123
+ * @license MIT
124
+ */
125
+ /**
114
126
  * configure comments preset for the below plugins
115
127
  *
116
128
  * - `@eslint-community/eslint-plugin-eslint-comments`
@@ -147,6 +159,10 @@ async function comments(options = {}) {
147
159
  //#endregion
148
160
  //#region src/configs/css.ts
149
161
  /**
162
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
163
+ * @license MIT
164
+ */
165
+ /**
150
166
  * `@eslint/css` and overrides configuration options
151
167
  *
152
168
  * @param {CssOptions & OverridesOptions} options
@@ -183,6 +199,10 @@ async function css(options = {}) {
183
199
  //#endregion
184
200
  //#region src/configs/deps.ts
185
201
  /**
202
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
203
+ * @license MIT
204
+ */
205
+ /**
186
206
  * `eslint-plugin-barrel-files` and overrides configuration options
187
207
  *
188
208
  * @param {DepsOptions & OverridesOptions} options - deps configuration options
@@ -211,6 +231,10 @@ async function deps(options = {}) {
211
231
  //#endregion
212
232
  //#region src/configs/html.ts
213
233
  /**
234
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
235
+ * @license MIT
236
+ */
237
+ /**
214
238
  * `@html-eslint/eslint-plugin` and overrides configuration options
215
239
  *
216
240
  * @param {HtmlOptions & OverridesOptions} options - eslint configuration options for HTML
@@ -274,6 +298,10 @@ function resolveTemplateEngineSyntax(syntax, parser) {
274
298
 
275
299
  //#endregion
276
300
  //#region src/configs/imports.ts
301
+ /**
302
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
303
+ * @license MIT
304
+ */
277
305
  const IMPORTS_FILES = [
278
306
  GLOB_JS,
279
307
  GLOB_JSX,
@@ -344,6 +372,10 @@ async function imports(options = {}) {
344
372
  //#endregion
345
373
  //#region src/configs/javascript.ts
346
374
  /**
375
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
376
+ * @license MIT
377
+ */
378
+ /**
347
379
  * `@eslint/js` and overrides configuration options
348
380
  *
349
381
  * @param {JavaScriptOptions & OverridesOptions} options - eslint configuration options for JavaScript
@@ -390,6 +422,11 @@ async function javascript(options = {}) {
390
422
  //#endregion
391
423
  //#region src/configs/jsdoc.ts
392
424
  /**
425
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
426
+ *
427
+ * @license MIT
428
+ */
429
+ /**
393
430
  * `eslint-plugin-jsdoc` and overrides configuration options
394
431
  *
395
432
  * @param {JsDocOptions & OverridesOptions} options - eslint configuration options for JavaScript
@@ -470,6 +507,10 @@ async function jsdoc(options = {}) {
470
507
  //#endregion
471
508
  //#region src/configs/jsonc.ts
472
509
  /**
510
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
511
+ * @license MIT
512
+ */
513
+ /**
473
514
  * `eslint-plugin-jsonc` and overrides configuration options
474
515
  *
475
516
  * @param {JsoncOptions & OverridesOptions} options - eslint jsonc configuration options for json, jsonc, json5
@@ -597,6 +638,10 @@ function jsoncSort() {
597
638
  //#endregion
598
639
  //#region src/configs/markdown.ts
599
640
  /**
641
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
642
+ * @license MIT
643
+ */
644
+ /**
600
645
  * `@eslint/markdown` and overrides configuration options
601
646
  *
602
647
  * @param {MarkdownOptions & OverridesOptions} options - eslint unicorn configuration options
@@ -655,9 +700,35 @@ async function markdown(options = {}) {
655
700
  }
656
701
  const md = markdown;
657
702
 
703
+ //#endregion
704
+ //#region src/configs/oxlint.ts
705
+ /**
706
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
707
+ * @license MIT
708
+ */
709
+ /**
710
+ * `eslint-plugin-oxlint` and overrides configuration options
711
+ *
712
+ * @param {OxlintOptions & OverridesOptions} options - eslint configuration options for oxlint
713
+ * @returns {Promise<Linter.Config[]>} eslint flat configurations with `eslint-plugin-oxlint` and overrides
714
+ */
715
+ async function oxlint(options = {}) {
716
+ const { rules: overrideRules = {} } = options;
717
+ const oxlint$1 = await loadPlugin("eslint-plugin-oxlint");
718
+ const customConfig = {
719
+ name: "@kazupon/oxlint",
720
+ rules: { ...overrideRules }
721
+ };
722
+ return [...options.configFile ? oxlint$1.buildFromOxlintConfigFile(options.configFile, { withNursery: options.withNursery }) : oxlint$1.configs["flat/all"], customConfig];
723
+ }
724
+
658
725
  //#endregion
659
726
  //#region src/configs/prettier.ts
660
727
  /**
728
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
729
+ * @license MIT
730
+ */
731
+ /**
661
732
  * `eslint-config-prettier` and overrides configuration options
662
733
  *
663
734
  * @param {PrettierOptions & OverridesOptions} options - eslint configuration options for Prettier
@@ -677,6 +748,10 @@ async function prettier(options = {}) {
677
748
  //#endregion
678
749
  //#region src/configs/promise.ts
679
750
  /**
751
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
752
+ * @license MIT
753
+ */
754
+ /**
680
755
  * `eslint-plugin-promise` and overrides configuration options
681
756
  *
682
757
  * @param {PromiseOptions & OverridesOptions} options - eslint promise configuration options
@@ -696,6 +771,10 @@ async function promise(options = {}) {
696
771
  //#endregion
697
772
  //#region src/configs/react.ts
698
773
  /**
774
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
775
+ * @license MIT
776
+ */
777
+ /**
699
778
  * `eslint-plugin-react` and overrides configuration options
700
779
  *
701
780
  * @param {ReactOptions & OverridesOptions} options - eslint react configuration options for regular expressions
@@ -743,6 +822,10 @@ async function react(options = {}) {
743
822
  //#endregion
744
823
  //#region src/configs/regexp.ts
745
824
  /**
825
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
826
+ * @license MIT
827
+ */
828
+ /**
746
829
  * `eslint-plugin-regexp` and overrides configuration options
747
830
  *
748
831
  * @param {RegexpOptions & OverridesOptions} options - eslint regexp configuration options for regular expressions
@@ -764,6 +847,10 @@ async function regexp(options = {}) {
764
847
  //#endregion
765
848
  //#region src/configs/stylistic.ts
766
849
  /**
850
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
851
+ * @license MIT
852
+ */
853
+ /**
767
854
  * `@stylistic/eslint-plugin` and overrides configuration options
768
855
  *
769
856
  * @param {StylisticOptions & OverridesOptions} options - stylistic eslint plugin configuration options
@@ -808,6 +895,10 @@ async function stylistic(options = {}) {
808
895
  //#endregion
809
896
  //#region src/configs/svelte.ts
810
897
  /**
898
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
899
+ * @license MIT
900
+ */
901
+ /**
811
902
  * `eslint-plugin-svelte` and overrides configuration options
812
903
  *
813
904
  * @param {SvelteScriptOptions & TypeScriptOptions & OverridesOptions} options - eslint configuration options for Vue
@@ -843,6 +934,10 @@ async function svelte(options = {}) {
843
934
  //#endregion
844
935
  //#region src/configs/toml.ts
845
936
  /**
937
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
938
+ * @license MIT
939
+ */
940
+ /**
846
941
  * `eslint-plugin-yml` and overrides configuration options
847
942
  *
848
943
  * @param {YmlOptions & OverridesOptions} options - eslint yml configuration options for yml, yaml
@@ -872,6 +967,10 @@ async function toml(options = {}) {
872
967
  //#endregion
873
968
  //#region src/configs/typescript.ts
874
969
  /**
970
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
971
+ * @license MIT
972
+ */
973
+ /**
875
974
  * `typescript-eslint` and overrides configuration options
876
975
  *
877
976
  * @param {TypeScriptOptions & OverridesOptions} options - eslint configuration options for TypeScript
@@ -949,6 +1048,10 @@ async function typescript(options = {}) {
949
1048
  //#endregion
950
1049
  //#region src/configs/unicorn.ts
951
1050
  /**
1051
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
1052
+ * @license MIT
1053
+ */
1054
+ /**
952
1055
  * `eslint-plugin-unicorn` and overrides configuration options
953
1056
  *
954
1057
  * @param {UnicornOptions & OverridesOptions} options - eslint unicorn configuration options
@@ -972,6 +1075,10 @@ async function unicorn(options = {}) {
972
1075
  //#endregion
973
1076
  //#region src/configs/vitest.ts
974
1077
  /**
1078
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
1079
+ * @license MIT
1080
+ */
1081
+ /**
975
1082
  * `@vitest/eslint-plugin` and overrides configuration options
976
1083
  *
977
1084
  * @param {VitestOptions & OverridesOptions} options - eslint vitest configuration options
@@ -1005,6 +1112,10 @@ async function vitest(options = {}) {
1005
1112
  //#endregion
1006
1113
  //#region src/configs/vue.ts
1007
1114
  /**
1115
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
1116
+ * @license MIT
1117
+ */
1118
+ /**
1008
1119
  * `eslint-plugin-vue`, `eslint-plugin-vue-composable`, `eslint-plugin-vue-eslint-plugin-vuejs-accessibility` and overrides configuration options
1009
1120
  *
1010
1121
  * @param {VueScriptOptions & TypeScriptOptions & OverridesOptions} options - eslint configuration options for Vue
@@ -1081,6 +1192,10 @@ async function vue(options = {}) {
1081
1192
  //#endregion
1082
1193
  //#region src/configs/yml.ts
1083
1194
  /**
1195
+ * @author kazuya kawaguchi (a.k.a. `@kazupon`)
1196
+ * @license MIT
1197
+ */
1198
+ /**
1084
1199
  * `eslint-plugin-yml` and overrides configuration options
1085
1200
  *
1086
1201
  * @param {YmlOptions & OverridesOptions} options - eslint yml configuration options for yml, yaml
@@ -1114,4 +1229,4 @@ async function yml(options = {}) {
1114
1229
  const yaml = yml;
1115
1230
 
1116
1231
  //#endregion
1117
- export { comments, css, defineConfig, deps, html, imports, javascript, jsdoc, jsonc, markdown, md, prettier, promise, react, regexp, stylistic, svelte, toml, typescript, unicorn, vitest, vue, yaml, yml };
1232
+ export { comments, css, defineConfig, deps, html, imports, javascript, jsdoc, jsonc, markdown, md, oxlint, prettier, promise, react, regexp, stylistic, svelte, toml, typescript, unicorn, vitest, vue, yaml, yml };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kazupon/eslint-config",
3
3
  "description": "ESLint config for @kazupon",
4
- "version": "0.38.0",
4
+ "version": "0.39.1",
5
5
  "author": {
6
6
  "email": "kawakazu80@gmail.com",
7
7
  "name": "kazuya kawaguchi"
@@ -30,16 +30,16 @@
30
30
  "files": [
31
31
  "dist"
32
32
  ],
33
- "module": "./dist/index.js",
33
+ "module": "./dist/index.mjs",
34
34
  "exports": {
35
35
  ".": {
36
- "types": "./dist/index.d.ts",
37
- "import": "./dist/index.js",
38
- "default": "./dist/index.js"
36
+ "types": "./dist/index.d.mts",
37
+ "import": "./dist/index.mjs",
38
+ "default": "./dist/index.mjs"
39
39
  },
40
40
  "./package.json": "./package.json"
41
41
  },
42
- "types": "./dist/index.d.ts",
42
+ "types": "./dist/index.d.mts",
43
43
  "typesVersions": {
44
44
  "*": {
45
45
  "*": [
@@ -50,13 +50,13 @@
50
50
  },
51
51
  "dependencies": {
52
52
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
53
- "@eslint/js": "^9.37.0",
53
+ "@eslint/js": "^9.39.1",
54
54
  "@kazupon/eslint-plugin": "^0.6.2",
55
55
  "@kazupon/jts-utils": "^0.7.1",
56
56
  "@stylistic/eslint-plugin": "^4.4.1",
57
57
  "eslint-flat-config-utils": "^2.1.4",
58
58
  "eslint-merge-processors": "^2.0.0",
59
- "globals": "^16.4.0"
59
+ "globals": "^16.5.0"
60
60
  },
61
61
  "peerDependencies": {
62
62
  "@eslint/css": ">=0.13.0",
@@ -73,6 +73,7 @@
73
73
  "eslint-plugin-jsonc": ">=2.21.0",
74
74
  "eslint-plugin-markdown-preferences": ">=0.36.2",
75
75
  "eslint-plugin-module-interop": ">=0.3.0",
76
+ "eslint-plugin-oxlint": ">=1.30.0",
76
77
  "eslint-plugin-promise": ">=7.2.0",
77
78
  "eslint-plugin-react": ">=7.37.0",
78
79
  "eslint-plugin-react-hooks": ">=7.0.0",
@@ -131,6 +132,9 @@
131
132
  "eslint-plugin-module-interop": {
132
133
  "optional": true
133
134
  },
135
+ "eslint-plugin-oxlint": {
136
+ "optional": true
137
+ },
134
138
  "eslint-plugin-promise": {
135
139
  "optional": true
136
140
  },
@@ -184,35 +188,36 @@
184
188
  }
185
189
  },
186
190
  "devDependencies": {
187
- "@eslint/compat": "^1.4.0",
188
- "@eslint/css": "^0.13.0",
189
- "@eslint/markdown": "^7.4.0",
190
- "@html-eslint/eslint-plugin": "^0.47.0",
191
+ "@eslint/compat": "^1.4.1",
192
+ "@eslint/css": "^0.14.0",
193
+ "@eslint/markdown": "^7.5.1",
194
+ "@html-eslint/eslint-plugin": "^0.48.0",
191
195
  "@intlify/eslint-plugin-vue-i18n": "^4.1.0",
192
196
  "@kazupon/prettier-config": "^0.1.1",
193
197
  "@types/eslint": "^9.6.1",
194
- "@types/node": "^22.18.9",
195
- "@vitest/eslint-plugin": "^1.3.16",
198
+ "@types/node": "^22.19.1",
199
+ "@vitest/eslint-plugin": "^1.5.0",
196
200
  "bumpp": "^10.3.1",
197
- "eslint": "^9.37.0",
201
+ "eslint": "^9.39.1",
198
202
  "eslint-config-prettier": "^10.1.8",
199
203
  "eslint-import-resolver-typescript": "^4.4.4",
200
204
  "eslint-plugin-barrel-files": "^3.0.1",
201
205
  "eslint-plugin-import": "^2.32.0",
202
- "eslint-plugin-jsdoc": "^61.1.4",
206
+ "eslint-plugin-jsdoc": "^61.4.1",
203
207
  "eslint-plugin-jsonc": "^2.21.0",
204
- "eslint-plugin-markdown-preferences": "^0.36.2",
208
+ "eslint-plugin-markdown-preferences": "^0.36.3",
205
209
  "eslint-plugin-module-interop": "^0.3.1",
210
+ "eslint-plugin-oxlint": "^1.30.0",
206
211
  "eslint-plugin-promise": "^7.2.1",
207
212
  "eslint-plugin-react": "^7.37.5",
208
- "eslint-plugin-react-hooks": "^7.0.0",
209
- "eslint-plugin-react-refresh": "^0.4.23",
213
+ "eslint-plugin-react-hooks": "^7.0.1",
214
+ "eslint-plugin-react-refresh": "^0.4.24",
210
215
  "eslint-plugin-regexp": "^2.10.0",
211
- "eslint-plugin-svelte": "^3.12.0",
216
+ "eslint-plugin-svelte": "^3.13.0",
212
217
  "eslint-plugin-toml": "^0.12.0",
213
218
  "eslint-plugin-unicorn": "^61.0.2",
214
- "eslint-plugin-unused-imports": "^4.2.0",
215
- "eslint-plugin-vue": "^10.5.0",
219
+ "eslint-plugin-unused-imports": "^4.3.0",
220
+ "eslint-plugin-vue": "^10.6.0",
216
221
  "eslint-plugin-vue-composable": "^1.0.0",
217
222
  "eslint-plugin-vue-scoped-css": "^2.12.0",
218
223
  "eslint-plugin-vuejs-accessibility": "^2.4.1",
@@ -220,14 +225,14 @@
220
225
  "eslint-typegen": "^2.3.0",
221
226
  "gh-changelogen": "^0.2.8",
222
227
  "jiti": "^2.6.1",
223
- "knip": "^5.64.3",
224
- "lint-staged": "^16.2.4",
228
+ "knip": "^5.70.2",
229
+ "lint-staged": "^16.2.7",
225
230
  "prettier": "^3.6.2",
226
- "svelte": "^5.39.11",
231
+ "svelte": "^5.44.1",
227
232
  "tailwind-csstree": "^0.1.4",
228
- "tsdown": "^0.15.6",
233
+ "tsdown": "^0.16.4",
229
234
  "typescript": "^5.9.3",
230
- "typescript-eslint": "^8.46.0",
235
+ "typescript-eslint": "^8.48.0",
231
236
  "vitest": "^3.2.4"
232
237
  },
233
238
  "prettier": "@kazupon/prettier-config",