stylelint
Advanced tools
Comparing version 16.10.0 to 16.11.0
{ | ||
"name": "stylelint", | ||
"version": "16.10.0", | ||
"version": "16.11.0", | ||
"description": "A mighty CSS linter that helps you avoid errors and enforce conventions.", | ||
@@ -70,3 +70,3 @@ "keywords": [ | ||
"lint:formatting": "prettier . --check --cache", | ||
"lint:js": "eslint . --cache --max-warnings=0 --ext .js,.mjs", | ||
"lint:js": "eslint . --cache --max-warnings=0", | ||
"lint:md": "remark . --quiet --frail", | ||
@@ -89,33 +89,2 @@ "lint:types": "tsc", | ||
"prettier": "@stylelint/prettier-config", | ||
"eslintConfig": { | ||
"parserOptions": { | ||
"ecmaVersion": 2023 | ||
}, | ||
"extends": [ | ||
"stylelint", | ||
"stylelint/jest" | ||
], | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"**/*.mjs" | ||
], | ||
"plugins": [ | ||
"eslint-plugin-import" | ||
], | ||
"rules": { | ||
"import/extensions": [ | ||
"error", | ||
"ignorePackages" | ||
] | ||
} | ||
} | ||
], | ||
"globals": { | ||
"testRule": "readonly", | ||
"testRuleConfigs": "readonly" | ||
}, | ||
"reportUnusedDisableDirectives": true, | ||
"root": true | ||
}, | ||
"remarkConfig": { | ||
@@ -163,6 +132,6 @@ "plugins": [ | ||
"dependencies": { | ||
"@csstools/css-parser-algorithms": "^3.0.1", | ||
"@csstools/css-tokenizer": "^3.0.1", | ||
"@csstools/media-query-list-parser": "^3.0.1", | ||
"@csstools/selector-specificity": "^4.0.0", | ||
"@csstools/css-parser-algorithms": "^3.0.4", | ||
"@csstools/css-tokenizer": "^3.0.3", | ||
"@csstools/media-query-list-parser": "^4.0.2", | ||
"@csstools/selector-specificity": "^5.0.0", | ||
"@dual-bundle/import-meta-resolve": "^4.1.0", | ||
@@ -173,3 +142,3 @@ "balanced-match": "^2.0.0", | ||
"css-functions-list": "^3.2.3", | ||
"css-tree": "^3.0.0", | ||
"css-tree": "^3.0.1", | ||
"debug": "^4.3.7", | ||
@@ -186,3 +155,3 @@ "fast-glob": "^3.3.2", | ||
"is-plain-object": "^5.0.0", | ||
"known-css-properties": "^0.34.0", | ||
"known-css-properties": "^0.35.0", | ||
"mathml-tag-names": "^2.1.3", | ||
@@ -192,7 +161,7 @@ "meow": "^13.2.0", | ||
"normalize-path": "^3.0.0", | ||
"picocolors": "^1.0.1", | ||
"postcss": "^8.4.47", | ||
"picocolors": "^1.1.1", | ||
"postcss": "^8.4.49", | ||
"postcss-resolve-nested-selector": "^0.1.6", | ||
"postcss-safe-parser": "^7.0.1", | ||
"postcss-selector-parser": "^6.1.2", | ||
"postcss-selector-parser": "^7.0.0", | ||
"postcss-value-parser": "^4.2.0", | ||
@@ -207,3 +176,3 @@ "resolve-from": "^5.0.0", | ||
"devDependencies": { | ||
"@changesets/cli": "^2.27.9", | ||
"@changesets/cli": "^2.27.10", | ||
"@changesets/get-github-info": "^0.6.0", | ||
@@ -214,3 +183,3 @@ "@jest/globals": "^29.7.0", | ||
"@types/balanced-match": "^1.0.4", | ||
"@types/css-tree": "^2.3.8", | ||
"@types/css-tree": "^2.3.9", | ||
"@types/debug": "^4.1.12", | ||
@@ -231,6 +200,6 @@ "@types/file-entry-cache": "^5.0.4", | ||
"deepmerge": "^4.3.1", | ||
"eslint": "^8.57.0", | ||
"eslint-config-stylelint": "^22.0.0", | ||
"eslint": "^9.15.0", | ||
"eslint-config-stylelint": "^23.0.0", | ||
"eslint-plugin-import": "^2.31.0", | ||
"eslint-plugin-jest": "^28.8.3", | ||
"eslint-plugin-jest": "^28.9.0", | ||
"husky": "^9.1.6", | ||
@@ -250,5 +219,5 @@ "jest": "^29.7.0", | ||
"remark-cli": "^12.0.1", | ||
"rollup": "^4.24.0", | ||
"rollup": "^4.27.4", | ||
"sugarss": "^4.0.1", | ||
"typescript": "^5.6.3" | ||
"typescript": "^5.7.2" | ||
}, | ||
@@ -255,0 +224,0 @@ "engines": { |
@@ -17,2 +17,3 @@ import type * as PostCSS from 'postcss'; | ||
files: string | string[]; | ||
name?: string; | ||
}; | ||
@@ -38,16 +39,2 @@ | ||
type EmptyResult = { | ||
root: { | ||
nodes?: undefined; | ||
source: { | ||
lang?: undefined; | ||
input: { | ||
file?: string; | ||
}; | ||
}; | ||
}; | ||
messages: PostCSS.Message[]; | ||
opts: undefined; | ||
}; | ||
// Note: With strict function types enabled, function signatures are checked contravariantly. | ||
@@ -120,2 +107,3 @@ // This means that it would not be possible for rule authors to narrow the message function | ||
reportDescriptionlessDisables?: DisableSettings; | ||
reportUnscopedDisables?: DisableSettings; | ||
configurationComment?: string; | ||
@@ -187,3 +175,3 @@ overrides?: ConfigOverride[]; | ||
/** @internal */ | ||
export type PostcssResult = (PostCSS.Result | EmptyResult) & { | ||
export type PostcssResult = PostCSS.Result & { | ||
stylelint: StylelintPostcssResult; | ||
@@ -477,3 +465,3 @@ warn(message: string, options?: WarningOptions): void; | ||
'media-feature-range-notation': CoreRule<'prefix' | 'context'>; | ||
'media-query-no-invalid': CoreRule<true>; | ||
'media-query-no-invalid': CoreRule<true, { ignoreFunctions: OneOrMany<StringOrRegex> }>; | ||
'named-grid-areas-no-invalid': CoreRule<true>; | ||
@@ -676,2 +664,3 @@ 'no-descending-specificity': CoreRule<true, { ignore: OneOrMany<'selectors-within-list'> }>; | ||
reportInvalidScopeDisables?: boolean; | ||
reportUnscopedDisables?: boolean; | ||
maxWarnings?: number; | ||
@@ -678,0 +667,0 @@ customSyntax?: CustomSyntax; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1507705
46023
+ Added@csstools/selector-specificity@5.0.0(transitive)
+ Addedknown-css-properties@0.35.0(transitive)
+ Addedpostcss-selector-parser@7.0.0(transitive)
+ Addedtable@6.9.0(transitive)
- Removed@csstools/selector-specificity@4.0.0(transitive)
- Removedknown-css-properties@0.34.0(transitive)
- Removedpostcss-selector-parser@6.1.2(transitive)
- Removedtable@6.8.2(transitive)
Updatedcss-tree@^3.0.1
Updatedknown-css-properties@^0.35.0
Updatedpicocolors@^1.1.1
Updatedpostcss@^8.4.49