@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,85 @@
|
|
|
1
|
+
import { isNumber } from '../utils/validateTypes.mjs';
|
|
2
|
+
import preprocessWarnings from './preprocessWarnings.mjs';
|
|
3
|
+
|
|
4
|
+
/** @import {Warning, Formatter} from 'stylelint' */
|
|
5
|
+
/** @typedef {Array<Omit<Warning, 'rule'>>} Warnings */
|
|
6
|
+
|
|
7
|
+
/** @type {Formatter} */
|
|
8
|
+
export default function tapFormatter(results) {
|
|
9
|
+
const lines = ['TAP version 14', `1..${results.length}`];
|
|
10
|
+
|
|
11
|
+
for (const [index, result] of results.entries()) {
|
|
12
|
+
preprocessWarnings(result);
|
|
13
|
+
// SKIP indicates "that a test was not run, or if it was,
|
|
14
|
+
// that its success or failure is being temporarily ignored."
|
|
15
|
+
// skipped tests must not be treated as test failures though
|
|
16
|
+
// if a file is ignored, errored is currently always false
|
|
17
|
+
const ignored = result.ignored ? ' # SKIP ignored' : '';
|
|
18
|
+
const error = result.errored ? 'not ' : '';
|
|
19
|
+
|
|
20
|
+
lines.push(`${error}ok ${index + 1} - ${getEscapedSource(result.source)}${ignored}`);
|
|
21
|
+
|
|
22
|
+
if (error) {
|
|
23
|
+
lines.push(' ---');
|
|
24
|
+
|
|
25
|
+
/** @type {Record<string, Warnings>} */
|
|
26
|
+
const rules = {};
|
|
27
|
+
|
|
28
|
+
for (const { rule, ...rest } of result.warnings) {
|
|
29
|
+
const name = rule || 'unknown';
|
|
30
|
+
const warnings = (rules[name] ??= []);
|
|
31
|
+
|
|
32
|
+
warnings.push(rest);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
for (const [ruleName, warnings] of Object.entries(rules)) {
|
|
36
|
+
lines.push(` ${ruleName}:`);
|
|
37
|
+
|
|
38
|
+
for (const { text, severity, line, column, endLine, endColumn } of warnings) {
|
|
39
|
+
lines.push(
|
|
40
|
+
` - message: ${JSON.stringify(text)}`,
|
|
41
|
+
` severity: ${severity}`,
|
|
42
|
+
` line: ${line}`,
|
|
43
|
+
` column: ${column}`,
|
|
44
|
+
);
|
|
45
|
+
|
|
46
|
+
if (isNumber(endLine)) lines.push(` endLine: ${endLine}`);
|
|
47
|
+
|
|
48
|
+
if (isNumber(endColumn)) lines.push(` endColumn: ${endColumn}`);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
lines.push(' ...');
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
lines.push('');
|
|
57
|
+
|
|
58
|
+
return lines.join('\n');
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Apply TAP escaping to the source that is part of the test point description
|
|
63
|
+
* @see {@link https://testanything.org/tap-version-14-specification.html#escaping TAP 14 specification}
|
|
64
|
+
* @param {string} [source]
|
|
65
|
+
*/
|
|
66
|
+
function getEscapedSource(source) {
|
|
67
|
+
if (!source) return source;
|
|
68
|
+
|
|
69
|
+
let output = '';
|
|
70
|
+
|
|
71
|
+
for (const char of source) {
|
|
72
|
+
switch (char.codePointAt(0)) {
|
|
73
|
+
case 0x005c: // `\`
|
|
74
|
+
case 0x0023: // `#`
|
|
75
|
+
output += '\\';
|
|
76
|
+
output += char;
|
|
77
|
+
break;
|
|
78
|
+
default:
|
|
79
|
+
output += char;
|
|
80
|
+
break;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
return output;
|
|
85
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import supportsHyperlinks from 'supports-hyperlinks';
|
|
2
|
+
|
|
3
|
+
// ANSI escapes
|
|
4
|
+
const OSC = '\u001B]';
|
|
5
|
+
const BEL = '\u0007';
|
|
6
|
+
const SEP = ';';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @see https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda
|
|
10
|
+
*
|
|
11
|
+
* @param {string} text
|
|
12
|
+
* @param {string} url
|
|
13
|
+
* @returns {string}
|
|
14
|
+
*/
|
|
15
|
+
export default function terminalLink(text, url) {
|
|
16
|
+
if (supportsHyperlinks.stdout) {
|
|
17
|
+
return [OSC, '8', SEP, SEP, url, BEL, text, OSC, '8', SEP, SEP, BEL].join('');
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
return text;
|
|
21
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import calcSeverityCounts from './calcSeverityCounts.mjs';
|
|
2
|
+
import pluralize from '../utils/pluralize.mjs';
|
|
3
|
+
import preprocessWarnings from './preprocessWarnings.mjs';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @type {import('stylelint').Formatter}
|
|
7
|
+
*/
|
|
8
|
+
export default function unixFormatter(results) {
|
|
9
|
+
const counts = { error: 0, warning: 0 };
|
|
10
|
+
const lines = results.flatMap((result) => {
|
|
11
|
+
preprocessWarnings(result);
|
|
12
|
+
|
|
13
|
+
return result.warnings.map((warning) => {
|
|
14
|
+
calcSeverityCounts(warning.severity, counts);
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
`${result.source}:${warning.line}:${warning.column}: ` +
|
|
18
|
+
`${warning.text} [${warning.severity}]`
|
|
19
|
+
);
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
const total = lines.length;
|
|
23
|
+
let output = lines.join('\n');
|
|
24
|
+
|
|
25
|
+
if (total > 0) {
|
|
26
|
+
output += `\n\n${total} ${pluralize('problem', total)}`;
|
|
27
|
+
output += ` (${counts.error} ${pluralize('error', counts.error)}`;
|
|
28
|
+
output += `, ${counts.warning} ${pluralize('warning', counts.warning)})\n`;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
return output;
|
|
32
|
+
}
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import picocolors from 'picocolors';
|
|
2
|
+
const { underline, red, yellow, dim, green } = picocolors;
|
|
3
|
+
|
|
4
|
+
import pluralize from '../utils/pluralize.mjs';
|
|
5
|
+
import stringFormatter from './stringFormatter.mjs';
|
|
6
|
+
import terminalLink from './terminalLink.mjs';
|
|
7
|
+
|
|
8
|
+
/** @import {Formatter, LintResult, RuleMeta, Severity, Warning} from 'stylelint' */
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @type {Formatter}
|
|
12
|
+
*/
|
|
13
|
+
export default function verboseFormatter(results, returnValue) {
|
|
14
|
+
let output = stringFormatter(results, returnValue);
|
|
15
|
+
|
|
16
|
+
if (output === '') {
|
|
17
|
+
output = '\n';
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
const ignoredCount = results.filter((result) => result.ignored).length;
|
|
21
|
+
const checkedDisplay = ignoredCount
|
|
22
|
+
? `${results.length - ignoredCount} of ${results.length}`
|
|
23
|
+
: results.length;
|
|
24
|
+
|
|
25
|
+
output += underline(`${checkedDisplay} ${pluralize('source', results.length)} checked\n`);
|
|
26
|
+
|
|
27
|
+
for (const result of results) {
|
|
28
|
+
let formatting = green;
|
|
29
|
+
|
|
30
|
+
if (result.errored) {
|
|
31
|
+
formatting = red;
|
|
32
|
+
} else if (result.warnings.length) {
|
|
33
|
+
formatting = yellow;
|
|
34
|
+
} else if (result.ignored) {
|
|
35
|
+
formatting = dim;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
let sourceText = fileLink(result.source);
|
|
39
|
+
|
|
40
|
+
if (result.ignored) {
|
|
41
|
+
sourceText += ' (ignored)';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
output += formatting(` ${sourceText}\n`);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const warnings = results.flatMap((r) => r.warnings);
|
|
48
|
+
|
|
49
|
+
if (warnings.length === 0) {
|
|
50
|
+
output += '\n0 problems found\n';
|
|
51
|
+
} else {
|
|
52
|
+
const warningsBySeverity = groupBy(warnings, (w) => w.severity);
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @param {Severity} severity
|
|
56
|
+
*/
|
|
57
|
+
const printProblems = (severity) => {
|
|
58
|
+
const problems = warningsBySeverity[severity];
|
|
59
|
+
|
|
60
|
+
if (problems === undefined) return;
|
|
61
|
+
|
|
62
|
+
output += '\n';
|
|
63
|
+
output += underline(`${problems.length} ${pluralize(severity, problems.length)} found\n`);
|
|
64
|
+
|
|
65
|
+
const problemsByRule = groupBy(problems, (w) => w.rule);
|
|
66
|
+
const metadata = returnValue.ruleMetadata;
|
|
67
|
+
|
|
68
|
+
for (const [rule, list] of Object.entries(problemsByRule)) {
|
|
69
|
+
const meta = metadata[rule] || {};
|
|
70
|
+
|
|
71
|
+
let additional = [meta.fixable ? 'maybe fixable' : '', meta.deprecated ? 'deprecated' : '']
|
|
72
|
+
.filter(Boolean)
|
|
73
|
+
.join(', ');
|
|
74
|
+
|
|
75
|
+
additional = additional ? ` (${additional})` : '';
|
|
76
|
+
|
|
77
|
+
output += dim(` ${ruleLink(rule, meta)}: ${list.length}${additional}\n`);
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
printProblems('error');
|
|
82
|
+
printProblems('warning');
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
const fixedRules = getFixedRules(results);
|
|
86
|
+
|
|
87
|
+
if (fixedRules.size) {
|
|
88
|
+
let lines = '\n';
|
|
89
|
+
let total = 0;
|
|
90
|
+
|
|
91
|
+
for (const [name, count] of fixedRules) {
|
|
92
|
+
const meta = returnValue.ruleMetadata[name];
|
|
93
|
+
|
|
94
|
+
lines += dim(` ${ruleLink(name, meta)}: ${count}\n`);
|
|
95
|
+
total += count;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
output += '\n';
|
|
99
|
+
output += underline(`${total} ${pluralize('problem', total)} fixed`);
|
|
100
|
+
output += lines;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
return `${output}\n`;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* @template {string} K
|
|
108
|
+
* @param {Warning[]} array
|
|
109
|
+
* @param {(w: Warning) => K} keyFn
|
|
110
|
+
* @returns {Record<K, Warning[]>}
|
|
111
|
+
* @todo replace by Object.groupBy once support for Node.js version 20 is dropped
|
|
112
|
+
*/
|
|
113
|
+
function groupBy(array, keyFn) {
|
|
114
|
+
/** @type {Record<string, Warning[]>} */
|
|
115
|
+
const result = {};
|
|
116
|
+
|
|
117
|
+
for (const item of array) {
|
|
118
|
+
const key = keyFn(item);
|
|
119
|
+
let warnings = result[key];
|
|
120
|
+
|
|
121
|
+
if (warnings === undefined) {
|
|
122
|
+
result[key] = warnings = [];
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
warnings.push(item);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
return result;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* @param {string | undefined} source
|
|
133
|
+
* @returns {string}
|
|
134
|
+
*/
|
|
135
|
+
function fileLink(source) {
|
|
136
|
+
if (!source || source.startsWith('<')) {
|
|
137
|
+
return `${source}`;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
return terminalLink(source, `file://${source}`);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* @param {string} rule
|
|
145
|
+
* @param {Partial<RuleMeta> | undefined} metadata
|
|
146
|
+
* @returns {string}
|
|
147
|
+
*/
|
|
148
|
+
function ruleLink(rule, metadata) {
|
|
149
|
+
if (metadata && metadata.url) {
|
|
150
|
+
return terminalLink(rule, metadata.url);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
return rule;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/** @param {LintResult[]} results */
|
|
157
|
+
function getFixedRules(results) {
|
|
158
|
+
/** @type {Map<string, number>} */
|
|
159
|
+
const rules = new Map();
|
|
160
|
+
|
|
161
|
+
for (const { _postcssResult } of results) {
|
|
162
|
+
if (!_postcssResult) continue; // CSS syntax error
|
|
163
|
+
|
|
164
|
+
const {
|
|
165
|
+
stylelint: { fixersData },
|
|
166
|
+
} = _postcssResult;
|
|
167
|
+
const entries = Object.entries(fixersData);
|
|
168
|
+
|
|
169
|
+
for (const [ruleName, count] of entries) {
|
|
170
|
+
if (count) rules.set(ruleName, count);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
return rules;
|
|
175
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { join } from 'node:path';
|
|
2
|
+
|
|
3
|
+
import { ConfigurationError } from './utils/errors.mjs';
|
|
4
|
+
import { augmentConfigFull } from './augmentConfig.mjs';
|
|
5
|
+
import normalizeFilePath from './utils/normalizeFilePath.mjs';
|
|
6
|
+
|
|
7
|
+
/** @import {CosmiconfigResult, InternalApi} from 'stylelint' */
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Creates a cache key for the augmented config cache.
|
|
11
|
+
*
|
|
12
|
+
* @param {string} configPath Path to the config file
|
|
13
|
+
* @param {string} filePath Path to the target file
|
|
14
|
+
* @returns {string}
|
|
15
|
+
*/
|
|
16
|
+
function getAugmentedConfigCacheKey(configPath, filePath) {
|
|
17
|
+
return `${configPath || 'no-config'}::${filePath || 'no-file'}`;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Get a configuration by the following way:
|
|
22
|
+
*
|
|
23
|
+
* 1. If the `config` option is given, it's returned.
|
|
24
|
+
* 2. If the `configFile` option is given, the file's config is returned.
|
|
25
|
+
* 3. If the options above are not given, a config found in `searchPath` is returned.
|
|
26
|
+
*
|
|
27
|
+
* @param {Object} options
|
|
28
|
+
* @param {InternalApi} options.stylelint
|
|
29
|
+
* @param {string} [options.searchPath] - Defaults to `cwd`.
|
|
30
|
+
* @param {string} [options.filePath] - For applying overrides.
|
|
31
|
+
* @param {boolean} [options.failIfNoConfig=true] - Throws an error if a config is not found.
|
|
32
|
+
* @returns {Promise<CosmiconfigResult>}
|
|
33
|
+
*/
|
|
34
|
+
export default async function getConfigForFile({
|
|
35
|
+
stylelint,
|
|
36
|
+
searchPath = stylelint._options.cwd,
|
|
37
|
+
filePath,
|
|
38
|
+
failIfNoConfig = true,
|
|
39
|
+
}) {
|
|
40
|
+
const optionsConfig = stylelint._options.config;
|
|
41
|
+
const cwd = stylelint._options.cwd;
|
|
42
|
+
|
|
43
|
+
if (optionsConfig) {
|
|
44
|
+
const filePathAsCacheKey = normalizeFilePath(filePath ?? '');
|
|
45
|
+
/** @type {Map<string, CosmiconfigResult>} */
|
|
46
|
+
const cachedForFiles = stylelint._specifiedConfigCache.get(optionsConfig) ?? new Map();
|
|
47
|
+
const cached = cachedForFiles.get(filePathAsCacheKey);
|
|
48
|
+
|
|
49
|
+
if (cached) {
|
|
50
|
+
return cached;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const augmentedResult = await augmentConfigFull(stylelint, filePath, {
|
|
54
|
+
config: optionsConfig,
|
|
55
|
+
// Add the extra path part so that we can get the directory without being
|
|
56
|
+
// confused
|
|
57
|
+
filepath: join(cwd, 'argument-config'),
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
cachedForFiles.set(filePathAsCacheKey, augmentedResult);
|
|
61
|
+
stylelint._specifiedConfigCache.set(optionsConfig, cachedForFiles);
|
|
62
|
+
|
|
63
|
+
return augmentedResult;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
const configExplorer = stylelint._configExplorer;
|
|
67
|
+
|
|
68
|
+
const configFile = stylelint._options.configFile;
|
|
69
|
+
|
|
70
|
+
// First, discover the raw config, cached by cosmiconfig.
|
|
71
|
+
let rawConfig = configFile
|
|
72
|
+
? await configExplorer.load(configFile)
|
|
73
|
+
: await configExplorer.search(searchPath);
|
|
74
|
+
|
|
75
|
+
if (!rawConfig) {
|
|
76
|
+
rawConfig = await configExplorer.search(cwd);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
if (!rawConfig && failIfNoConfig) {
|
|
80
|
+
throw new ConfigurationError(
|
|
81
|
+
`No configuration provided${searchPath ? ` for ${searchPath}` : ''}`,
|
|
82
|
+
);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
if (!rawConfig) {
|
|
86
|
+
return rawConfig;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// Check the augmented config cache.
|
|
90
|
+
const cacheKey = getAugmentedConfigCacheKey(
|
|
91
|
+
rawConfig.filepath,
|
|
92
|
+
filePath ? normalizeFilePath(filePath) : '',
|
|
93
|
+
);
|
|
94
|
+
|
|
95
|
+
const cachedAugmented = stylelint._augmentedConfigCache.get(cacheKey);
|
|
96
|
+
|
|
97
|
+
if (cachedAugmented) {
|
|
98
|
+
return cachedAugmented;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// Perform full augmentation.
|
|
102
|
+
const augmentedResult = await augmentConfigFull(stylelint, filePath, rawConfig);
|
|
103
|
+
|
|
104
|
+
// Cache the augmented result.
|
|
105
|
+
if (augmentedResult) {
|
|
106
|
+
stylelint._augmentedConfigCache.set(cacheKey, augmentedResult);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
return augmentedResult;
|
|
110
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { readFile } from 'node:fs/promises';
|
|
2
|
+
|
|
3
|
+
import postcss from 'postcss';
|
|
4
|
+
|
|
5
|
+
import dynamicImport from './utils/dynamicImport.mjs';
|
|
6
|
+
import getModulePath from './utils/getModulePath.mjs';
|
|
7
|
+
import normalizeFilePath from './utils/normalizeFilePath.mjs';
|
|
8
|
+
import normalizeFixMode from './utils/normalizeFixMode.mjs';
|
|
9
|
+
|
|
10
|
+
/** @import {Result, Syntax} from 'postcss' */
|
|
11
|
+
/** @import {CustomSyntax, GetPostcssOptions, InternalApi as StylelintInternalApi} from 'stylelint' */
|
|
12
|
+
|
|
13
|
+
const postcssProcessor = postcss();
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* @param {StylelintInternalApi} stylelint
|
|
17
|
+
* @param {GetPostcssOptions} options
|
|
18
|
+
*
|
|
19
|
+
* @returns {Promise<Result>}
|
|
20
|
+
*/
|
|
21
|
+
export default async function getPostcssResult(stylelint, { customSyntax, filePath, code } = {}) {
|
|
22
|
+
const normalizedPath = filePath ? normalizeFilePath(filePath) : undefined;
|
|
23
|
+
const cached = normalizedPath ? stylelint._postcssResultCache.get(normalizedPath) : undefined;
|
|
24
|
+
|
|
25
|
+
if (cached) {
|
|
26
|
+
return cached;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const fix = normalizeFixMode(stylelint._options.fix);
|
|
30
|
+
const syntax = await (customSyntax
|
|
31
|
+
? getCustomSyntax(customSyntax, stylelint._options.configBasedir)
|
|
32
|
+
: cssSyntax(fix === 'lax'));
|
|
33
|
+
|
|
34
|
+
const postcssOptions = {
|
|
35
|
+
from: filePath,
|
|
36
|
+
syntax,
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
/** @type {string | undefined} */
|
|
40
|
+
let getCode;
|
|
41
|
+
|
|
42
|
+
if (code !== undefined) {
|
|
43
|
+
getCode = code;
|
|
44
|
+
} else if (filePath) {
|
|
45
|
+
getCode = await readFile(filePath, 'utf8');
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
if (getCode === undefined) {
|
|
49
|
+
throw new Error('code or filePath required');
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
const postcssResult = await postcssProcessor.process(getCode, postcssOptions).async();
|
|
53
|
+
|
|
54
|
+
if (normalizedPath) {
|
|
55
|
+
stylelint._postcssResultCache.set(normalizedPath, postcssResult);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
return postcssResult;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* @param {CustomSyntax} customSyntax
|
|
63
|
+
* @param {string | undefined} basedir
|
|
64
|
+
* @returns {Promise<Syntax>}
|
|
65
|
+
*/
|
|
66
|
+
async function getCustomSyntax(customSyntax, basedir) {
|
|
67
|
+
if (typeof customSyntax === 'string') {
|
|
68
|
+
const customSyntaxLookup = basedir ? getModulePath(basedir, customSyntax) : customSyntax;
|
|
69
|
+
|
|
70
|
+
let resolved;
|
|
71
|
+
|
|
72
|
+
try {
|
|
73
|
+
resolved = await dynamicImport(customSyntaxLookup);
|
|
74
|
+
resolved = resolved.default ?? resolved;
|
|
75
|
+
} catch (error) {
|
|
76
|
+
if (
|
|
77
|
+
error &&
|
|
78
|
+
typeof error === 'object' &&
|
|
79
|
+
'code' in error &&
|
|
80
|
+
// TODO: Remove 'MODULE_NOT_FOUND' when we drop the CommonJS support.
|
|
81
|
+
// See https://nodejs.org/api/errors.html#module_not_found
|
|
82
|
+
(error.code === 'MODULE_NOT_FOUND' || error.code === 'ERR_MODULE_NOT_FOUND') &&
|
|
83
|
+
'message' in error &&
|
|
84
|
+
typeof error.message === 'string' &&
|
|
85
|
+
error.message.includes(customSyntax)
|
|
86
|
+
) {
|
|
87
|
+
throw new Error(
|
|
88
|
+
`Cannot resolve custom syntax module "${customSyntax}". Check that module "${customSyntax}" is available and spelled correctly.\n\nCaused by: ${error}`,
|
|
89
|
+
{ cause: error },
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
throw error;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/*
|
|
97
|
+
* PostCSS allows for syntaxes that only contain a parser, however,
|
|
98
|
+
* it then expects the syntax to be set as the `parse` option.
|
|
99
|
+
*/
|
|
100
|
+
if (!resolved.parse) {
|
|
101
|
+
resolved = {
|
|
102
|
+
parse: resolved,
|
|
103
|
+
stringify: postcss.stringify,
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
return resolved;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
if (typeof customSyntax === 'object' || typeof customSyntax === 'function') {
|
|
111
|
+
if (typeof customSyntax.parse === 'function') {
|
|
112
|
+
return { ...customSyntax };
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
throw new TypeError(
|
|
116
|
+
'An object provided to the "customSyntax" option must have a "parse" property. Ensure the "parse" property exists and its value is a function.',
|
|
117
|
+
);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
throw new Error('Custom syntax must be a string or a Syntax object');
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* @param {boolean} fix
|
|
125
|
+
* @returns {Promise<Syntax>}
|
|
126
|
+
*/
|
|
127
|
+
async function cssSyntax(fix) {
|
|
128
|
+
const parse = await (fix ? import('postcss-safe-parser').then((m) => m.default) : postcss.parse);
|
|
129
|
+
|
|
130
|
+
return { parse, stringify: postcss.stringify };
|
|
131
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import checkAgainstRule from './utils/checkAgainstRule.mjs';
|
|
2
|
+
import createPlugin from './createPlugin.mjs';
|
|
3
|
+
import createStylelint from './createStylelint.mjs';
|
|
4
|
+
import formatters from './formatters/index.mjs';
|
|
5
|
+
import { longhandSubPropertiesOfShorthandProperties } from './reference/properties.mjs';
|
|
6
|
+
import postcssPlugin from './postcssPlugin.mjs';
|
|
7
|
+
import report from './utils/report.mjs';
|
|
8
|
+
import resolveConfig from './resolveConfig.mjs';
|
|
9
|
+
import ruleMessages from './utils/ruleMessages.mjs';
|
|
10
|
+
import rules from './rules/index.mjs';
|
|
11
|
+
import standalone from './standalone.mjs';
|
|
12
|
+
import validateOptions from './utils/validateOptions.mjs';
|
|
13
|
+
|
|
14
|
+
/** @type {import('stylelint').PublicApi} */
|
|
15
|
+
const stylelint = Object.assign(postcssPlugin, {
|
|
16
|
+
lint: standalone,
|
|
17
|
+
rules,
|
|
18
|
+
formatters,
|
|
19
|
+
createPlugin,
|
|
20
|
+
resolveConfig,
|
|
21
|
+
_createLinter: createStylelint,
|
|
22
|
+
utils: {
|
|
23
|
+
report,
|
|
24
|
+
ruleMessages,
|
|
25
|
+
validateOptions,
|
|
26
|
+
checkAgainstRule,
|
|
27
|
+
},
|
|
28
|
+
reference: {
|
|
29
|
+
longhandSubPropertiesOfShorthandProperties,
|
|
30
|
+
},
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
export default stylelint;
|
|
34
|
+
|
|
35
|
+
// Special `require(ESM)` default export for CommonJS interoperability
|
|
36
|
+
// See: https://joyeecheung.github.io/blog/2025/12/30/require-esm-in-node-js-from-experiment-to-stability/
|
|
37
|
+
// See: https://joyeecheung.github.io/blog/2025/12/30/require-esm-in-node-js-implementers-tales/
|
|
38
|
+
export { stylelint as 'module.exports' };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { RULE_NAME_ALL } from './constants.mjs';
|
|
2
|
+
|
|
3
|
+
import optionsMatches from './utils/optionsMatches.mjs';
|
|
4
|
+
import reportCommentProblem from './utils/reportCommentProblem.mjs';
|
|
5
|
+
import validateDisableSettings from './validateDisableSettings.mjs';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @param {import('stylelint').PostcssResult} postcssResult
|
|
9
|
+
* @returns {void}
|
|
10
|
+
*/
|
|
11
|
+
export default function invalidScopeDisables(postcssResult) {
|
|
12
|
+
const [enabled, options] = validateDisableSettings(postcssResult, 'reportInvalidScopeDisables');
|
|
13
|
+
|
|
14
|
+
if (!options) return;
|
|
15
|
+
|
|
16
|
+
const configRules = postcssResult.stylelint.config?.rules;
|
|
17
|
+
|
|
18
|
+
if (!configRules) return;
|
|
19
|
+
|
|
20
|
+
const usedRules = new Set(Object.keys(configRules));
|
|
21
|
+
|
|
22
|
+
usedRules.add(RULE_NAME_ALL);
|
|
23
|
+
|
|
24
|
+
for (const [rule, ruleRanges] of Object.entries(postcssResult.stylelint.disabledRanges)) {
|
|
25
|
+
if (usedRules.has(rule)) continue;
|
|
26
|
+
|
|
27
|
+
if (enabled === optionsMatches(options, 'except', rule)) continue;
|
|
28
|
+
|
|
29
|
+
for (const range of ruleRanges) {
|
|
30
|
+
if (!range.strictStart && !range.strictEnd) continue;
|
|
31
|
+
|
|
32
|
+
reportCommentProblem({
|
|
33
|
+
rule: '--report-invalid-scope-disables',
|
|
34
|
+
message: `Rule "${rule}" isn't enabled`,
|
|
35
|
+
severity: options.severity,
|
|
36
|
+
node: range.node,
|
|
37
|
+
postcssResult,
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { isAbsolute, relative, resolve } from 'node:path';
|
|
2
|
+
import micromatch from 'micromatch';
|
|
3
|
+
|
|
4
|
+
import filterFilePaths from './utils/filterFilePaths.mjs';
|
|
5
|
+
import getConfigForFile from './getConfigForFile.mjs';
|
|
6
|
+
import getFileIgnorer from './utils/getFileIgnorer.mjs';
|
|
7
|
+
import normalizeFilePath from './utils/normalizeFilePath.mjs';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* To find out if a path is ignored, we need to load the config,
|
|
11
|
+
* which may have an ignoreFiles property. We then check the path
|
|
12
|
+
* against these.
|
|
13
|
+
* @param {import('stylelint').InternalApi} stylelint
|
|
14
|
+
* @param {string} [filePath]
|
|
15
|
+
* @returns {Promise<boolean>}
|
|
16
|
+
*/
|
|
17
|
+
export default async function isPathIgnored(stylelint, filePath) {
|
|
18
|
+
if (!filePath) {
|
|
19
|
+
return false;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const cwd = stylelint._options.cwd;
|
|
23
|
+
const result = await getConfigForFile({ stylelint, searchPath: filePath, filePath });
|
|
24
|
+
|
|
25
|
+
if (!result) {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const ignoreFiles = result.config.ignoreFiles || [];
|
|
30
|
+
const absoluteFilePath = isAbsolute(filePath) ? filePath : resolve(cwd, filePath);
|
|
31
|
+
|
|
32
|
+
const normalizedAbsolutePath = normalizeFilePath(absoluteFilePath);
|
|
33
|
+
const normalizedIgnoreFiles = ignoreFiles.map((/** @type {string} */ glob) =>
|
|
34
|
+
normalizeFilePath(String(glob)),
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
if (micromatch([normalizedAbsolutePath], normalizedIgnoreFiles).length > 0) {
|
|
38
|
+
return true;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const ignorer = getFileIgnorer(stylelint._options);
|
|
42
|
+
|
|
43
|
+
if (filterFilePaths(ignorer, [relative(cwd, absoluteFilePath)]).length === 0) {
|
|
44
|
+
return true;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
return false;
|
|
48
|
+
}
|