@alexlit/lint-kit 183.4.0 → 183.6.0
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/package.json +1 -1
- package/packages/config-eslint/package.json +4 -4
- package/packages/config-stylelint/node_modules/ansi-regex/index.d.ts +33 -0
- package/packages/config-stylelint/node_modules/ansi-regex/index.js +14 -0
- package/packages/config-stylelint/node_modules/ansi-regex/license +9 -0
- package/packages/config-stylelint/node_modules/ansi-regex/package.json +61 -0
- package/packages/config-stylelint/node_modules/ansi-regex/readme.md +66 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/LICENSE +19 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/README.md +630 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.cjs +559 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.d.cts +304 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.d.ts +304 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.js +525 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/package.json +62 -0
- package/packages/config-stylelint/node_modules/flat-cache/LICENSE +19 -0
- package/packages/config-stylelint/node_modules/flat-cache/README.md +235 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.cjs +495 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.d.cts +255 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.d.ts +255 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.js +455 -0
- package/packages/config-stylelint/node_modules/flat-cache/package.json +81 -0
- package/packages/config-stylelint/node_modules/globby/ignore.js +337 -0
- package/packages/config-stylelint/node_modules/globby/index.d.ts +394 -0
- package/packages/config-stylelint/node_modules/globby/index.js +488 -0
- package/packages/config-stylelint/node_modules/globby/license +9 -0
- package/packages/config-stylelint/node_modules/globby/package.json +94 -0
- package/packages/config-stylelint/node_modules/globby/readme.md +388 -0
- package/packages/config-stylelint/node_modules/globby/utilities.js +382 -0
- package/packages/config-stylelint/node_modules/meow/build/dependencies.js +7347 -0
- package/packages/config-stylelint/node_modules/meow/build/index.d.ts +2684 -0
- package/packages/config-stylelint/node_modules/meow/build/index.js +185 -0
- package/packages/config-stylelint/node_modules/meow/build/licenses.md +1254 -0
- package/packages/config-stylelint/node_modules/meow/build/options.js +147 -0
- package/packages/config-stylelint/node_modules/meow/build/parser.js +113 -0
- package/packages/config-stylelint/node_modules/meow/build/utils.js +7 -0
- package/packages/config-stylelint/node_modules/meow/build/validate.js +145 -0
- package/packages/config-stylelint/node_modules/meow/license +9 -0
- package/packages/config-stylelint/node_modules/meow/package.json +103 -0
- package/packages/config-stylelint/node_modules/meow/readme.md +387 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/LICENSE +20 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/README.md +25 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/lib/safe-parse.js +12 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/lib/safe-parser.js +100 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/package.json +36 -0
- package/packages/config-stylelint/node_modules/slash/index.d.ts +23 -0
- package/packages/config-stylelint/node_modules/slash/index.js +9 -0
- package/packages/config-stylelint/node_modules/slash/license +9 -0
- package/packages/config-stylelint/node_modules/slash/package.json +39 -0
- package/packages/config-stylelint/node_modules/slash/readme.md +36 -0
- package/packages/config-stylelint/node_modules/string-width/index.d.ts +39 -0
- package/packages/config-stylelint/node_modules/string-width/index.js +119 -0
- package/packages/config-stylelint/node_modules/string-width/license +9 -0
- package/packages/config-stylelint/node_modules/string-width/package.json +65 -0
- package/packages/config-stylelint/node_modules/string-width/readme.md +66 -0
- package/packages/config-stylelint/node_modules/strip-ansi/index.d.ts +15 -0
- package/packages/config-stylelint/node_modules/strip-ansi/index.js +19 -0
- package/packages/config-stylelint/node_modules/strip-ansi/license +9 -0
- package/packages/config-stylelint/node_modules/strip-ansi/package.json +59 -0
- package/packages/config-stylelint/node_modules/strip-ansi/readme.md +37 -0
- package/packages/config-stylelint/node_modules/stylelint/LICENSE +20 -0
- package/packages/config-stylelint/node_modules/stylelint/README.md +113 -0
- package/packages/config-stylelint/node_modules/stylelint/bin/stylelint.mjs +7 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/assignDisabledRanges.mjs +483 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/augmentConfig.mjs +586 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/cli.mjs +746 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/constants.mjs +25 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/createPartialStylelintResult.mjs +114 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/createPlugin.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/createStylelint.mjs +37 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/descriptionlessDisables.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/calcSeverityCounts.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/compactFormatter.mjs +23 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/index.mjs +23 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/jsonFormatter.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/preprocessWarnings.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/stringFormatter.mjs +308 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/tapFormatter.mjs +85 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/terminalLink.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/unixFormatter.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/verboseFormatter.mjs +175 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/getConfigForFile.mjs +110 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/getPostcssResult.mjs +131 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/index.mjs +38 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/invalidScopeDisables.mjs +41 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/isPathIgnored.mjs +48 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/lintPostcssResult.mjs +172 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/lintSource.mjs +135 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/needlessDisables.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/normalizeAllRuleSettings.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/normalizeRuleSettings.mjs +56 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/postcssPlugin.mjs +50 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/prepareReturnValue.mjs +63 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/printConfig.mjs +44 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/atKeywords.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/functions.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/keywords.mjs +663 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/mediaFeatures.mjs +115 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/mediaTypes.mjs +14 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/prefixes.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/properties.mjs +1111 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/selectors.mjs +472 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/units.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reportDisables.mjs +48 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reportUnknownRuleNames.mjs +76 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/resolveConfig.mjs +43 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/alpha-value-notation/index.mjs +207 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/annotation-no-unknown/index.mjs +88 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-allowed-list/index.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-descriptor-no-unknown/index.mjs +108 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-descriptor-value-no-unknown/index.mjs +64 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-disallowed-list/index.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-empty-line-before/index.mjs +178 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-no-deprecated/index.mjs +86 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-no-unknown/index.mjs +80 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-no-vendor-prefix/index.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-prelude-no-invalid/index.mjs +76 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-property-required-list/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/block-no-empty/index.mjs +116 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/block-no-redundant-nested-style-rules/index.mjs +52 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-function-alias-notation/index.mjs +87 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-function-notation/index.mjs +168 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-hex-alpha/index.mjs +75 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-hex-length/index.mjs +128 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-named/colordUtils.mjs +109 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-named/index.mjs +183 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-no-hex/index.mjs +69 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-no-invalid-hex/index.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-empty-line-before/index.mjs +131 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-no-empty/index.mjs +50 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-pattern/index.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-whitespace-inside/index.mjs +149 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-word-disallowed-list/index.mjs +63 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/container-name-pattern/index.mjs +107 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-media-pattern/index.mjs +61 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-property-empty-line-before/index.mjs +156 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-property-no-missing-var-function/index.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-property-pattern/index.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-duplicate-custom-properties/index.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-duplicate-properties/index.mjs +301 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-redundant-longhand-properties/index.mjs +411 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-shorthand-property-overrides/index.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-single-line-max-declarations/index.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-empty-line-before/index.mjs +160 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-no-important/index.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-max-values/index.mjs +79 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-unit-allowed-list/index.mjs +108 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-unit-disallowed-list/index.mjs +94 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-allowed-list/index.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-disallowed-list/index.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-keyword-no-deprecated/index.mjs +207 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-no-unknown/index.mjs +466 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/display-notation/index.mjs +225 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-family-name-quotes/index.mjs +243 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-family-no-duplicate-names/index.mjs +122 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-family-no-missing-generic-family-keyword/index.mjs +122 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-weight-notation/index.mjs +221 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-allowed-list/index.mjs +114 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-calc-no-unspaced-operator/index.mjs +589 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-disallowed-list/index.mjs +73 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-linear-gradient-no-nonstandard-direction/index.mjs +145 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-name-case/index.mjs +120 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-no-unknown/index.mjs +83 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-no-scheme-relative/index.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-quotes/index.mjs +230 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-scheme-allowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-scheme-disallowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/hue-degree-notation/index.mjs +123 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/import-notation/index.mjs +104 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/index.mjs +180 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframe-block-no-duplicate-selectors/index.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframe-declaration-no-important/index.mjs +54 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframe-selector-notation/index.mjs +202 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframes-name-pattern/index.mjs +63 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/layer-name-pattern/index.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/length-zero-no-unit/index.mjs +221 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/lightness-notation/index.mjs +165 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/max-nesting-depth/index.mjs +195 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-allowed-list/index.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-disallowed-list/index.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-no-unknown/index.mjs +79 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/index.mjs +94 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-unit-allowed-list/index.mjs +110 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-value-allowed-list/index.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-value-no-unknown/index.mjs +296 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-range-notation/index.mjs +187 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-query-no-invalid/index.mjs +193 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-type-no-deprecated/index.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/named-grid-areas-no-invalid/index.mjs +117 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/named-grid-areas-no-invalid/utils/findNotContiguousOrRectangular.mjs +57 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/nesting-selector-no-missing-scoping-root/index.mjs +165 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-descending-specificity/index.mjs +200 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-duplicate-at-import-rules/index.mjs +156 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-duplicate-selectors/index.mjs +218 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-empty-source/index.mjs +61 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-invalid-double-slash-comments/index.mjs +77 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-invalid-position-at-import-rule/index.mjs +76 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-invalid-position-declaration/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-irregular-whitespace/index.mjs +236 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-unknown-animations/index.mjs +71 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-unknown-custom-media/index.mjs +77 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-unknown-custom-properties/index.mjs +72 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/number-max-precision/index.mjs +209 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-allowed-list/index.mjs +58 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-disallowed-list/index.mjs +58 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-no-deprecated/index.mjs +143 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-no-unknown/index.mjs +126 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-no-vendor-prefix/index.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/rule-empty-line-before/index.mjs +156 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/rule-nesting-at-rule-required-list/index.mjs +85 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/rule-selector-property-disallowed-list/index.mjs +119 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-anb-no-unmatchable/index.mjs +121 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-name-disallowed-list/index.mjs +69 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-operator-allowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-operator-disallowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-quotes/index.mjs +107 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-class-pattern/index.mjs +71 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-combinator-allowed-list/index.mjs +81 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-combinator-disallowed-list/index.mjs +81 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-disallowed-list/index.mjs +115 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-id-pattern/index.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-attribute/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-class/index.mjs +75 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-combinators/index.mjs +77 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-compound-selectors/index.mjs +123 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-id/index.mjs +107 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-pseudo-class/index.mjs +85 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-specificity/index.mjs +146 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-type/index.mjs +219 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-universal/index.mjs +95 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-nested-pattern/index.mjs +95 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-no-qualifying-type/index.mjs +323 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-no-vendor-prefix/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-not-notation/index.mjs +217 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-class-allowed-list/index.mjs +84 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-class-disallowed-list/index.mjs +84 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-class-no-unknown/index.mjs +179 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-allowed-list/index.mjs +75 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-colon-notation/index.mjs +93 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-disallowed-list/index.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-no-unknown/index.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-type-case/index.mjs +118 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-type-no-unknown/index.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/shorthand-property-no-redundant-values/index.mjs +359 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/string-no-newline/index.mjs +120 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/syntax-string-no-invalid/index.mjs +80 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/time-min-milliseconds/index.mjs +167 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/unit-allowed-list/index.mjs +116 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/unit-disallowed-list/index.mjs +211 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/unit-no-unknown/index.mjs +207 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/value-keyword-case/index.mjs +253 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/value-no-vendor-prefix/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/standalone.mjs +383 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/timing.mjs +134 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/unscopedDisables.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/FileCache.mjs +115 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/addEmptyLineBefore.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/addSemicolonForEditInfo.mjs +35 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/appendRuleName.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/arrayEqual.mjs +14 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/beforeBlockString.mjs +28 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/blockString.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/blurInterpolation.mjs +8 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/cachedImport.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/checkAgainstRule.mjs +71 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/checkInvalidCLIOptions.mjs +105 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/configurationComment.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/containsString.mjs +52 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/createMapWithSet.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/dynamicImport.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/eachDeclarationBlock.mjs +59 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/eachNodeUpToRoot.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/emitWarning.mjs +84 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/errors.mjs +55 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/filterFilePaths.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findAnimationName.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findAtRuleContext.mjs +27 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findFontFamily.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findMediaFeatureNames.mjs +151 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findNodeUpToRoot.mjs +25 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/fixEmptyLinesBefore.mjs +26 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/functionArgumentsSearch.mjs +65 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getAtRuleParams.mjs +7 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getDeclarationValue.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getDimension.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getFileIgnorer.mjs +41 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getFormatter.mjs +43 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getFormatterOptionsText.mjs +12 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getImportantPosition.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getLexer.mjs +39 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getModulePath.mjs +35 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getNextNonSharedLineCommentNode.mjs +34 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getPreviousNonSharedLineCommentNode.mjs +36 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getRelativePath.mjs +12 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getRuleSelector.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getSchemeFromUrl.mjs +36 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getSelectorSourceIndex.mjs +12 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getStrippedSelectorSource.mjs +47 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getStylelintRule.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasBlock.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasEmptyLine.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasInterpolation.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasLessInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasPsvInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasScssInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasTplInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hash.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterBlock.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterComment.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterSingleLineComment.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterStandardPropertyDeclaration.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAutoprefixable.mjs +364 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isBlocklessAtRuleAfterBlocklessAtRule.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isBlocklessAtRuleAfterSameNameBlocklessAtRule.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isContextFunctionalPseudoClass.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCounterIncrementCustomIdentValue.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCounterResetCustomIdentValue.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomElement.mjs +34 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomFunction.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomMediaQuery.mjs +8 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomProperty.mjs +8 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomSelector.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isDescriptorDeclaration.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isFirstNested.mjs +83 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isFirstNodeOfRoot.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isHexColor.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isInDocument.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isKeyframeRule.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isKeyframeSelector.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isMathFunction.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isNonNegativeInteger.mjs +6 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isNumbery.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isOnlyWhitespace.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isPathNotFoundError.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isScssVariable.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isSharedLineComment.mjs +53 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isSingleLineString.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxAtRule.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxColorFunction.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxCombinator.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxComment.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxDeclaration.mjs +57 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxFunction.mjs +28 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxHexColor.mjs +14 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxKeyframesName.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxProperty.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxRule.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxSelector.mjs +56 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxTypeSelector.mjs +56 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxUrl.mjs +49 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxValue.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isUnicodeRangeDescriptor.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isUnicodeSupported.mjs +26 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isUrlFunction.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isValidFontSize.mjs +38 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isValidHex.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isValidIdentifier.mjs +39 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isVarFunction.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isVariable.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isWhitespace.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/matchesStringOrRegExp.mjs +97 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/mergeSyntaxDefinitions.mjs +137 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/narrowFixRange.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/nodeContextLookup.mjs +41 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/nodeFieldIndices.mjs +119 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/normalizeFilePath.mjs +26 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/normalizeFixMode.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/normalizeSelector.mjs +231 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/optionsMatches.mjs +20 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/optionsMatchesEntry.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/parseCustomMediaQuery.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/parseMediaQuery.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/parseSelector.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/pathExists.mjs +16 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/pluralize.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/putIfAbsent.mjs +20 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/rangesOverlap.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/rawNodeString.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/regexes.mjs +135 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/removeEmptyLinesBefore.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/report.mjs +321 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/reportCommentProblem.mjs +39 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveFilePath.mjs +38 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveNestedSelectorsForRule.mjs +108 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveOptionValue.mjs +30 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveSilent.mjs +144 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/ruleMessages.mjs +18 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/setAtRuleParams.mjs +18 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/setDeclarationValue.mjs +18 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/suppressionsService.mjs +317 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/toPath.mjs +23 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/typeGuards.mjs +90 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/uniteSets.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateObjectWithArrayProps.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateObjectWithProps.mjs +28 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateOptions.mjs +176 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateTypes.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/vendor.mjs +43 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/validateDisableSettings.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/writeOutputFile.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/package.json +211 -0
- package/packages/config-stylelint/node_modules/stylelint/types/stylelint/index.d.ts +1594 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/default.d.ts +13 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/default.js +14 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/license +9 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/node.d.ts +125 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/node.js +49 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/package.json +68 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/readme.md +31 -0
- package/packages/config-stylelint/package.json +3 -3
- package/packages/config-stylelint/plugins/color-format.js +2 -2
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/** @typedef {import('postcss').AtRule} AtRule */
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @param {AtRule} atRule
|
|
5
|
+
* @param {string} params
|
|
6
|
+
* @returns {AtRule} The atRulearation that was passed in.
|
|
7
|
+
*/
|
|
8
|
+
export default function setAtRuleParams(atRule, params) {
|
|
9
|
+
const raws = atRule.raws;
|
|
10
|
+
|
|
11
|
+
if (raws.params) {
|
|
12
|
+
raws.params.raw = params;
|
|
13
|
+
} else {
|
|
14
|
+
atRule.params = params;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
return atRule;
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/** @typedef {import('postcss').Declaration} Declaration */
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @param {Declaration} decl
|
|
5
|
+
* @param {string} value
|
|
6
|
+
* @returns {Declaration} The declaration that was passed in.
|
|
7
|
+
*/
|
|
8
|
+
export default function setDeclarationValue(decl, value) {
|
|
9
|
+
const raws = decl.raws;
|
|
10
|
+
|
|
11
|
+
if (raws.value) {
|
|
12
|
+
raws.value.raw = value;
|
|
13
|
+
} else {
|
|
14
|
+
decl.value = value;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
return decl;
|
|
18
|
+
}
|
|
@@ -0,0 +1,317 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is based on ESLint's suppressions-service.js
|
|
3
|
+
* https://github.com/eslint/eslint/blob/v9.26.0/lib/services/suppressions-service.js
|
|
4
|
+
*
|
|
5
|
+
* Copyright OpenJS Foundation and other contributors, https://openjsf.org/
|
|
6
|
+
* Released under the MIT License:
|
|
7
|
+
* https://github.com/eslint/eslint/blob/main/LICENSE
|
|
8
|
+
*/
|
|
9
|
+
import fs from 'node:fs';
|
|
10
|
+
import path from 'node:path';
|
|
11
|
+
|
|
12
|
+
import getRelativePath from './getRelativePath.mjs';
|
|
13
|
+
import isPathNotFoundError from './isPathNotFoundError.mjs';
|
|
14
|
+
|
|
15
|
+
/** @import {LintResult, Warning, SuppressedProblems} from 'stylelint' */
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Manages the suppressed problems.
|
|
19
|
+
*/
|
|
20
|
+
export class SuppressionsService {
|
|
21
|
+
filePath = '';
|
|
22
|
+
cwd = '';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Creates a new instance of SuppressionsService.
|
|
26
|
+
* @param {Object} options The options.
|
|
27
|
+
* @param {string} options.filePath The path to the suppressions file.
|
|
28
|
+
* @param {string} options.cwd The current working directory.
|
|
29
|
+
*/
|
|
30
|
+
constructor({ filePath, cwd }) {
|
|
31
|
+
this.filePath = filePath;
|
|
32
|
+
this.cwd = cwd;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Updates the suppressions file based on the current problems and the provided rules.
|
|
37
|
+
* If no rules are provided, all problems are suppressed.
|
|
38
|
+
* This method now automatically prunes suppressions that no longer exist.
|
|
39
|
+
* @param {LintResult[] | undefined} results The lint results.
|
|
40
|
+
* @param {string[] | undefined} rules The rules to suppress.
|
|
41
|
+
* @returns {Promise<void>}
|
|
42
|
+
*/
|
|
43
|
+
async suppress(results, rules) {
|
|
44
|
+
if (results === undefined) return;
|
|
45
|
+
|
|
46
|
+
const suppressions = await this.load();
|
|
47
|
+
|
|
48
|
+
for (const result of results) {
|
|
49
|
+
const source = result.source;
|
|
50
|
+
|
|
51
|
+
if (!source) continue;
|
|
52
|
+
|
|
53
|
+
const relativePath = path.isAbsolute(source) ? getRelativePath(this.cwd, source) : source;
|
|
54
|
+
|
|
55
|
+
const problemsByRule = SuppressionsService.countProblemsByRule(result.warnings);
|
|
56
|
+
|
|
57
|
+
for (const [rule, ruleData] of problemsByRule) {
|
|
58
|
+
if (rules && !rules.includes(rule)) continue;
|
|
59
|
+
|
|
60
|
+
if (!suppressions.has(relativePath)) {
|
|
61
|
+
suppressions.set(relativePath, new Map());
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
const fileRules = suppressions.get(relativePath);
|
|
65
|
+
|
|
66
|
+
if (!fileRules) continue;
|
|
67
|
+
|
|
68
|
+
fileRules.set(rule, ruleData);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
const { unused } = this.applySuppressions(results, suppressions);
|
|
73
|
+
|
|
74
|
+
const prunedSuppressions = this.#prune(unused, suppressions);
|
|
75
|
+
|
|
76
|
+
return this.#save(prunedSuppressions);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Removes old, unused suppressions for problems that do not occur anymore.
|
|
81
|
+
* @param {SuppressedProblems} unused The unused suppressions.
|
|
82
|
+
* @param {SuppressedProblems} suppressions The suppressions.
|
|
83
|
+
* @returns {SuppressedProblems} The pruned suppressions.
|
|
84
|
+
*/
|
|
85
|
+
#prune(unused, suppressions) {
|
|
86
|
+
for (const [file, rules] of unused) {
|
|
87
|
+
if (!suppressions.has(file)) continue;
|
|
88
|
+
|
|
89
|
+
for (const [rule, ruleData] of rules) {
|
|
90
|
+
const fileRules = suppressions.get(file);
|
|
91
|
+
|
|
92
|
+
if (!fileRules) continue;
|
|
93
|
+
|
|
94
|
+
const suppressionData = fileRules.get(rule);
|
|
95
|
+
|
|
96
|
+
if (!suppressionData) continue;
|
|
97
|
+
|
|
98
|
+
const suppressionsCount = suppressionData.count;
|
|
99
|
+
const problemsCount = ruleData.count;
|
|
100
|
+
|
|
101
|
+
if (suppressionsCount === problemsCount) {
|
|
102
|
+
// Remove unused rules
|
|
103
|
+
fileRules.delete(rule);
|
|
104
|
+
} else {
|
|
105
|
+
// Update the count to match the new number of problems
|
|
106
|
+
const ruleDataForUpdate = fileRules.get(rule);
|
|
107
|
+
|
|
108
|
+
if (ruleDataForUpdate) {
|
|
109
|
+
ruleDataForUpdate.count -= problemsCount;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// Cleanup files with no rules
|
|
115
|
+
const fileRulesForCleanup = suppressions.get(file);
|
|
116
|
+
|
|
117
|
+
if (fileRulesForCleanup && fileRulesForCleanup.size === 0) {
|
|
118
|
+
suppressions.delete(file);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
return suppressions;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Checks the provided suppressions against the lint results.
|
|
127
|
+
*
|
|
128
|
+
* For each file, counts the number of problems per rule.
|
|
129
|
+
* For each rule in each file, compares the number of problems against the counter from the suppressions file.
|
|
130
|
+
* If the number of problems is less or equal to the counter, warnings are ignored.
|
|
131
|
+
* Otherwise, all problems are reported as usual.
|
|
132
|
+
* @param {LintResult[]} results The lint results.
|
|
133
|
+
* @param {SuppressedProblems} suppressions The suppressions.
|
|
134
|
+
* @returns {{
|
|
135
|
+
* results: LintResult[],
|
|
136
|
+
* unused: SuppressedProblems
|
|
137
|
+
* }} The updated results and the unused suppressions.
|
|
138
|
+
*/
|
|
139
|
+
applySuppressions(results, suppressions) {
|
|
140
|
+
/**
|
|
141
|
+
* We copy the results to avoid modifying the original objects
|
|
142
|
+
* We remove only result warnings that are matched and hence suppressed
|
|
143
|
+
* We leave the rest untouched to minimize the risk of losing parts of the original data
|
|
144
|
+
*/
|
|
145
|
+
const clonedResults = results.map((r) => {
|
|
146
|
+
return {
|
|
147
|
+
...r,
|
|
148
|
+
warnings: structuredClone(r.warnings),
|
|
149
|
+
};
|
|
150
|
+
});
|
|
151
|
+
|
|
152
|
+
/** @type {SuppressedProblems} */
|
|
153
|
+
const unused = new Map();
|
|
154
|
+
|
|
155
|
+
for (const result of clonedResults) {
|
|
156
|
+
const source = result.source;
|
|
157
|
+
|
|
158
|
+
if (!source) continue;
|
|
159
|
+
|
|
160
|
+
const relativePath = path.isAbsolute(source) ? getRelativePath(this.cwd, source) : source;
|
|
161
|
+
|
|
162
|
+
if (!suppressions.has(relativePath)) continue;
|
|
163
|
+
|
|
164
|
+
const problemsByRule = SuppressionsService.countProblemsByRule(result.warnings);
|
|
165
|
+
|
|
166
|
+
for (const [rule, ruleStats] of problemsByRule) {
|
|
167
|
+
const fileRules = suppressions.get(relativePath);
|
|
168
|
+
|
|
169
|
+
if (!fileRules) continue;
|
|
170
|
+
|
|
171
|
+
const ruleData = fileRules.get(rule);
|
|
172
|
+
|
|
173
|
+
if (!ruleData) continue;
|
|
174
|
+
|
|
175
|
+
const suppressionsCount = ruleData.count;
|
|
176
|
+
|
|
177
|
+
if (!ruleStats) continue;
|
|
178
|
+
|
|
179
|
+
const problemsCount = ruleStats.count;
|
|
180
|
+
|
|
181
|
+
// Suppress warnings if the number of problems is less or equal to the suppressions count
|
|
182
|
+
if (problemsCount <= suppressionsCount) {
|
|
183
|
+
result.warnings = result.warnings.filter((warning) => warning.rule !== rule);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
// Update the count to match the new number of problems, otherwise remove the rule entirely
|
|
187
|
+
if (problemsCount < suppressionsCount) {
|
|
188
|
+
if (!unused.has(relativePath)) {
|
|
189
|
+
unused.set(relativePath, new Map());
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
const unusedFileRules = unused.get(relativePath);
|
|
193
|
+
|
|
194
|
+
if (unusedFileRules && !unusedFileRules.has(rule)) {
|
|
195
|
+
unusedFileRules.set(rule, { count: 0 });
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
if (unusedFileRules) {
|
|
199
|
+
const unusedRuleData = unusedFileRules.get(rule);
|
|
200
|
+
|
|
201
|
+
if (unusedRuleData) {
|
|
202
|
+
unusedRuleData.count = suppressionsCount - problemsCount;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
// Mark as unused all the suppressions that were not matched against a rule
|
|
209
|
+
const fileRulesForUnused = suppressions.get(relativePath);
|
|
210
|
+
|
|
211
|
+
if (fileRulesForUnused) {
|
|
212
|
+
for (const [rule, savedEntry] of fileRulesForUnused) {
|
|
213
|
+
if (problemsByRule.has(rule)) continue;
|
|
214
|
+
|
|
215
|
+
if (!savedEntry) continue;
|
|
216
|
+
|
|
217
|
+
if (!unused.has(relativePath)) {
|
|
218
|
+
unused.set(relativePath, new Map());
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
const unusedFileRulesForSet = unused.get(relativePath);
|
|
222
|
+
|
|
223
|
+
if (!unusedFileRulesForSet) continue;
|
|
224
|
+
|
|
225
|
+
unusedFileRulesForSet.set(rule, savedEntry);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
return {
|
|
231
|
+
results: clonedResults,
|
|
232
|
+
unused,
|
|
233
|
+
};
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Loads the suppressions file.
|
|
238
|
+
* @throws {Error} If the suppressions file cannot be parsed.
|
|
239
|
+
* @returns {Promise<SuppressedProblems>} The suppressions.
|
|
240
|
+
*/
|
|
241
|
+
async load() {
|
|
242
|
+
try {
|
|
243
|
+
const data = await fs.promises.readFile(this.filePath, 'utf8');
|
|
244
|
+
const parsed = JSON.parse(data);
|
|
245
|
+
|
|
246
|
+
// Convert Object to Map
|
|
247
|
+
const suppressions = new Map();
|
|
248
|
+
|
|
249
|
+
for (const [filePath, rules] of Object.entries(parsed)) {
|
|
250
|
+
const rulesMap = new Map();
|
|
251
|
+
|
|
252
|
+
for (const [ruleName, ruleData] of Object.entries(rules)) {
|
|
253
|
+
rulesMap.set(ruleName, ruleData);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
suppressions.set(filePath, rulesMap);
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
return suppressions;
|
|
260
|
+
} catch (err) {
|
|
261
|
+
if (isPathNotFoundError(err)) {
|
|
262
|
+
return new Map();
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
throw new Error(`Failed to parse suppressions file at ${this.filePath}`, { cause: err });
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* Updates the suppressions file.
|
|
271
|
+
* @param {SuppressedProblems} suppressions The suppressions to save.
|
|
272
|
+
* @returns {Promise<void>}
|
|
273
|
+
*/
|
|
274
|
+
#save(suppressions) {
|
|
275
|
+
// Convert Map to Object for JSON serialization
|
|
276
|
+
/** @type {Record<string, Record<string, {count: number}>>} */
|
|
277
|
+
const obj = {};
|
|
278
|
+
|
|
279
|
+
for (const [filePath, rulesMap] of suppressions) {
|
|
280
|
+
obj[filePath] = {};
|
|
281
|
+
|
|
282
|
+
for (const [ruleName, ruleData] of rulesMap) {
|
|
283
|
+
obj[filePath][ruleName] = ruleData;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
return fs.promises.writeFile(this.filePath, `${JSON.stringify(obj, null, 2)}\n`);
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* Counts the problems by rule, ignoring warnings.
|
|
292
|
+
* @param {Warning[]} warnings The warnings to count.
|
|
293
|
+
* @returns {Map<string, {count: number}>} The number of problems by rule.
|
|
294
|
+
*/
|
|
295
|
+
static countProblemsByRule(warnings) {
|
|
296
|
+
/** @type {Map<string, {count: number}>} */
|
|
297
|
+
const totals = new Map();
|
|
298
|
+
|
|
299
|
+
for (const warning of warnings) {
|
|
300
|
+
const rule = warning.rule;
|
|
301
|
+
|
|
302
|
+
if (warning.severity !== 'error' || !rule) continue;
|
|
303
|
+
|
|
304
|
+
if (!totals.has(rule)) {
|
|
305
|
+
totals.set(rule, { count: 0 });
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
const ruleData = totals.get(rule);
|
|
309
|
+
|
|
310
|
+
if (ruleData) {
|
|
311
|
+
ruleData.count += 1;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
return totals;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { fileURLToPath } from 'node:url';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Converts a URL to a file path string, or returns the string as-is.
|
|
5
|
+
*
|
|
6
|
+
* @overload
|
|
7
|
+
* @param {string | URL} cwd
|
|
8
|
+
* @returns {string}
|
|
9
|
+
*
|
|
10
|
+
* @overload
|
|
11
|
+
* @param {undefined} cwd
|
|
12
|
+
* @returns {undefined}
|
|
13
|
+
*
|
|
14
|
+
* @overload
|
|
15
|
+
* @param {string | URL | undefined} cwd
|
|
16
|
+
* @returns {string | undefined}
|
|
17
|
+
*
|
|
18
|
+
* @param {string | URL | undefined} cwd
|
|
19
|
+
* @returns {string | undefined}
|
|
20
|
+
*/
|
|
21
|
+
export default function toPath(cwd) {
|
|
22
|
+
return cwd instanceof URL ? fileURLToPath(cwd) : cwd;
|
|
23
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/** @typedef {import('postcss').Node} Node */
|
|
2
|
+
/** @typedef {import('postcss').Source} NodeSource */
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* @param {Node} node
|
|
6
|
+
* @returns {node is import('postcss').Root}
|
|
7
|
+
*/
|
|
8
|
+
export function isRoot(node) {
|
|
9
|
+
return node.type === 'root';
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* @param {Node} node
|
|
14
|
+
* @returns {node is import('postcss').Rule}
|
|
15
|
+
*/
|
|
16
|
+
export function isRule(node) {
|
|
17
|
+
return node.type === 'rule';
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @param {Node} node
|
|
22
|
+
* @returns {node is import('postcss').AtRule}
|
|
23
|
+
*/
|
|
24
|
+
export function isAtRule(node) {
|
|
25
|
+
return node.type === 'atrule';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @param {Node} node
|
|
30
|
+
* @returns {node is import('postcss').Comment}
|
|
31
|
+
*/
|
|
32
|
+
export function isComment(node) {
|
|
33
|
+
return node.type === 'comment';
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @param {Node} node
|
|
38
|
+
* @returns {node is import('postcss').Declaration}
|
|
39
|
+
*/
|
|
40
|
+
export function isDeclaration(node) {
|
|
41
|
+
return node.type === 'decl';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* @param {Node} node
|
|
46
|
+
* @returns {node is import('postcss').Document}
|
|
47
|
+
*/
|
|
48
|
+
export function isDocument(node) {
|
|
49
|
+
return node.type === 'document';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* @param {import('postcss-value-parser').Node} node
|
|
54
|
+
* @returns {node is import('postcss-value-parser').DivNode}
|
|
55
|
+
*/
|
|
56
|
+
export function isValueDiv(node) {
|
|
57
|
+
return node.type === 'div';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* @param {import('postcss-value-parser').Node} node
|
|
62
|
+
* @returns {node is import('postcss-value-parser').FunctionNode}
|
|
63
|
+
*/
|
|
64
|
+
export function isValueFunction(node) {
|
|
65
|
+
return node.type === 'function';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @param {import('postcss-value-parser').Node} node
|
|
70
|
+
* @returns {node is import('postcss-value-parser').SpaceNode}
|
|
71
|
+
*/
|
|
72
|
+
export function isValueSpace(node) {
|
|
73
|
+
return node.type === 'space';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* @param {import('postcss-value-parser').Node} node
|
|
78
|
+
* @returns {node is import('postcss-value-parser').WordNode}
|
|
79
|
+
*/
|
|
80
|
+
export function isValueWord({ type }) {
|
|
81
|
+
return type === 'word';
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* @param {Node} node
|
|
86
|
+
* @returns {node is (Node & {source: NodeSource})}
|
|
87
|
+
*/
|
|
88
|
+
export function hasSource(node) {
|
|
89
|
+
return Boolean(node.source);
|
|
90
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Unite two or more sets
|
|
3
|
+
*
|
|
4
|
+
* @param {Iterable<string>[]} args
|
|
5
|
+
* @see {@link https://github.com/microsoft/TypeScript/issues/57228|GitHub}
|
|
6
|
+
*/
|
|
7
|
+
export default function uniteSets(...args) {
|
|
8
|
+
return new Set([...args].reduce((result, set) => [...result, ...set], []));
|
|
9
|
+
}
|
package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateObjectWithArrayProps.mjs
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { isPlainObject } from './validateTypes.mjs';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Check whether the variable is an object and all its properties are one or more values
|
|
5
|
+
* that satisfy the specified validator(s):
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* ignoreProperties = {
|
|
9
|
+
* value1: ["item11", "item12", "item13"],
|
|
10
|
+
* value2: "item2",
|
|
11
|
+
* };
|
|
12
|
+
* validateObjectWithArrayProps(isString)(ignoreProperties);
|
|
13
|
+
* //=> true
|
|
14
|
+
*
|
|
15
|
+
* @typedef {(value: unknown) => boolean} Validator
|
|
16
|
+
* @param {...Validator} validators
|
|
17
|
+
* @returns {Validator}
|
|
18
|
+
*/
|
|
19
|
+
export default function validateObjectWithArrayProps(...validators) {
|
|
20
|
+
return (value) => {
|
|
21
|
+
if (!isPlainObject(value)) {
|
|
22
|
+
return false;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
return Object.values(value)
|
|
26
|
+
.flat()
|
|
27
|
+
.every((item) => validators.some((v) => v(item)));
|
|
28
|
+
};
|
|
29
|
+
}
|
package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateObjectWithProps.mjs
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { isPlainObject } from './validateTypes.mjs';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Check whether the variable is an object and all its properties agree with the provided validator.
|
|
5
|
+
*
|
|
6
|
+
* @example
|
|
7
|
+
* config = {
|
|
8
|
+
* value1: 1,
|
|
9
|
+
* value2: 2,
|
|
10
|
+
* value3: 3,
|
|
11
|
+
* };
|
|
12
|
+
* validateObjectWithProps(isNumber)(config);
|
|
13
|
+
* //=> true
|
|
14
|
+
*
|
|
15
|
+
* @param {(value: unknown) => boolean} validator
|
|
16
|
+
* @returns {(value: unknown) => boolean}
|
|
17
|
+
*/
|
|
18
|
+
export default function validateObjectWithProps(validator) {
|
|
19
|
+
return (value) => {
|
|
20
|
+
if (!isPlainObject(value)) {
|
|
21
|
+
return false;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
return Object.values(value).every((item) => {
|
|
25
|
+
return validator(item);
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
import arrayEqual from './arrayEqual.mjs';
|
|
2
|
+
import { isPlainObject } from './validateTypes.mjs';
|
|
3
|
+
|
|
4
|
+
const IGNORED_OPTIONS = new Set(['severity', 'message', 'url', 'reportDisables', 'disableFix']);
|
|
5
|
+
const REPORT_OPTIONS = new Set([
|
|
6
|
+
'reportDescriptionlessDisables',
|
|
7
|
+
'reportInvalidScopeDisables',
|
|
8
|
+
'reportNeedlessDisables',
|
|
9
|
+
'reportUnscopedDisables',
|
|
10
|
+
]);
|
|
11
|
+
|
|
12
|
+
/** @typedef {import('stylelint').RuleOptions} RuleOptions */
|
|
13
|
+
/** @typedef {import('stylelint').RuleOptionsPossible} RuleOptionsPossible */
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* @type {import('stylelint').Utils['validateOptions']}
|
|
17
|
+
*/
|
|
18
|
+
export default function validateOptions(result, ruleName, ...optionDescriptions) {
|
|
19
|
+
const mustValidate = result.stylelint.config?.validate;
|
|
20
|
+
|
|
21
|
+
if (!mustValidate) return true;
|
|
22
|
+
|
|
23
|
+
let noErrors = true;
|
|
24
|
+
|
|
25
|
+
for (const optionDescription of optionDescriptions) {
|
|
26
|
+
validate(optionDescription, ruleName, complain);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @param {string} message
|
|
31
|
+
*/
|
|
32
|
+
function complain(message) {
|
|
33
|
+
noErrors = false;
|
|
34
|
+
result.warn(message, {
|
|
35
|
+
stylelintType: 'invalidOption',
|
|
36
|
+
});
|
|
37
|
+
result.stylelint.stylelintError = true;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return noErrors;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @param {RuleOptions} opts
|
|
45
|
+
* @param {string} ruleName
|
|
46
|
+
* @param {(message: string) => void} complain
|
|
47
|
+
*/
|
|
48
|
+
function validate({ possible, actual, optional }, ruleName, complain) {
|
|
49
|
+
if (actual === false && !REPORT_OPTIONS.has(ruleName)) {
|
|
50
|
+
return complain(
|
|
51
|
+
`Invalid option value "false" for rule "${ruleName}". Are you trying to disable this rule? If so use "null" instead`,
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// `null` means to turn off a rule.
|
|
56
|
+
if (actual === null || arrayEqual(actual, [null])) {
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const nothingPossible =
|
|
61
|
+
possible === undefined ||
|
|
62
|
+
possible === null ||
|
|
63
|
+
(Array.isArray(possible) && possible.length === 0) ||
|
|
64
|
+
(isPlainObject(possible) && Object.keys(possible).length === 0);
|
|
65
|
+
|
|
66
|
+
if (nothingPossible && actual === true) {
|
|
67
|
+
return;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
if (actual === undefined) {
|
|
71
|
+
if (nothingPossible || optional) {
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
complain(`Expected option value for rule "${ruleName}"`);
|
|
76
|
+
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
if (nothingPossible) {
|
|
81
|
+
if (optional) {
|
|
82
|
+
complain(
|
|
83
|
+
`Incorrect configuration for rule "${ruleName}". Rule should have "possible" values for options validation`,
|
|
84
|
+
);
|
|
85
|
+
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
complain(`Unexpected option value ${stringify(actual)} for rule "${ruleName}"`);
|
|
90
|
+
|
|
91
|
+
return;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
if (typeof possible === 'function') {
|
|
95
|
+
if (!possible(actual)) {
|
|
96
|
+
complain(`Invalid option ${stringify(actual)} for rule "${ruleName}"`);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// If `possible` is an array instead of an object ...
|
|
103
|
+
if (Array.isArray(possible)) {
|
|
104
|
+
for (const a of [actual].flat()) {
|
|
105
|
+
if (isValid(possible, a)) {
|
|
106
|
+
continue;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
complain(`Invalid option value ${stringify(a)} for rule "${ruleName}"`);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
return;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
// If actual is NOT an object ...
|
|
116
|
+
if (!isPlainObject(actual) || typeof actual !== 'object' || actual === null) {
|
|
117
|
+
complain(
|
|
118
|
+
`Invalid option value ${stringify(actual)} for rule "${ruleName}": should be an object`,
|
|
119
|
+
);
|
|
120
|
+
|
|
121
|
+
return;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
for (const [optionName, optionValue] of Object.entries(actual)) {
|
|
125
|
+
if (IGNORED_OPTIONS.has(optionName)) {
|
|
126
|
+
continue;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
const possibleValue = possible && possible[optionName];
|
|
130
|
+
|
|
131
|
+
if (!possibleValue) {
|
|
132
|
+
complain(`Invalid option name "${optionName}" for rule "${ruleName}"`);
|
|
133
|
+
|
|
134
|
+
continue;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
for (const a of [optionValue].flat()) {
|
|
138
|
+
if (isValid(possibleValue, a)) {
|
|
139
|
+
continue;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
complain(`Invalid value ${stringify(a)} for option "${optionName}" of rule "${ruleName}"`);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* @param {RuleOptionsPossible | RuleOptionsPossible[]} possible
|
|
149
|
+
* @param {unknown} actual
|
|
150
|
+
* @returns {boolean}
|
|
151
|
+
*/
|
|
152
|
+
function isValid(possible, actual) {
|
|
153
|
+
for (const possibility of [possible].flat()) {
|
|
154
|
+
if (typeof possibility === 'function' && possibility(actual)) {
|
|
155
|
+
return true;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
if (actual === possibility) {
|
|
159
|
+
return true;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
return false;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* @param {unknown} value
|
|
168
|
+
* @returns {string}
|
|
169
|
+
*/
|
|
170
|
+
function stringify(value) {
|
|
171
|
+
if (typeof value === 'string') {
|
|
172
|
+
return `"${value}"`;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
return `"${JSON.stringify(value)}"`;
|
|
176
|
+
}
|