stylelint-config-recommended
Advanced tools
Comparing version 14.0.1 to 15.0.0
13
index.js
@@ -6,5 +6,8 @@ 'use strict'; | ||
'annotation-no-unknown': true, | ||
'at-rule-descriptor-no-unknown': true, | ||
'at-rule-descriptor-value-no-unknown': true, | ||
'at-rule-no-deprecated': true, | ||
'at-rule-no-unknown': true, | ||
'at-rule-prelude-no-invalid': [true, { ignoreAtRules: ['media'] }], | ||
'block-no-empty': true, | ||
'color-no-invalid-hex': true, | ||
'comment-no-empty': true, | ||
@@ -20,10 +23,11 @@ 'custom-property-no-missing-var-function': true, | ||
'declaration-block-no-shorthand-property-overrides': true, | ||
'declaration-property-value-keyword-no-deprecated': true, | ||
'declaration-property-value-no-unknown': true, | ||
'font-family-no-duplicate-names': true, | ||
'font-family-no-missing-generic-family-keyword': true, | ||
'function-calc-no-unspaced-operator': true, | ||
'function-linear-gradient-no-nonstandard-direction': true, | ||
'function-no-unknown': true, | ||
'keyframe-block-no-duplicate-selectors': true, | ||
'keyframe-declaration-no-important': true, | ||
'media-feature-name-no-unknown': true, | ||
'media-feature-name-value-no-unknown': true, | ||
'media-query-no-invalid': true, | ||
@@ -48,5 +52,4 @@ 'named-grid-areas-no-invalid': true, | ||
], | ||
'string-no-newline': true, | ||
'unit-no-unknown': true, | ||
'string-no-newline': [true, { ignore: ['at-rule-preludes', 'declaration-values'] }], | ||
}, | ||
}; |
{ | ||
"name": "stylelint-config-recommended", | ||
"version": "14.0.1", | ||
"version": "15.0.0", | ||
"description": "Recommended shareable config for Stylelint", | ||
@@ -31,3 +31,3 @@ "keywords": [ | ||
"lint:formatting": "prettier . --check", | ||
"lint:js": "eslint . --ignore-path .gitignore", | ||
"lint:js": "eslint", | ||
"lint:md": "remark . --quiet --frail --ignore-path .gitignore", | ||
@@ -45,11 +45,2 @@ "lint": "npm-run-all --parallel lint:*", | ||
"prettier": "@stylelint/prettier-config", | ||
"eslintConfig": { | ||
"extends": [ | ||
"stylelint" | ||
], | ||
"globals": { | ||
"module": true, | ||
"require": true | ||
} | ||
}, | ||
"remarkConfig": { | ||
@@ -63,14 +54,14 @@ "plugins": [ | ||
"@stylelint/remark-preset": "^5.1.1", | ||
"eslint": "^8.57.0", | ||
"eslint-config-stylelint": "^21.0.0", | ||
"husky": "^9.0.11", | ||
"lint-staged": "^15.2.7", | ||
"np": "^10.0.6", | ||
"eslint": "^9.17.0", | ||
"eslint-config-stylelint": "^23.0.0", | ||
"husky": "^9.1.7", | ||
"lint-staged": "^15.3.0", | ||
"np": "^10.1.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^3.3.2", | ||
"prettier": "^3.4.2", | ||
"remark-cli": "^12.0.1", | ||
"stylelint": "^16.2.1" | ||
"stylelint": "^16.13.0" | ||
}, | ||
"peerDependencies": { | ||
"stylelint": "^16.1.0" | ||
"stylelint": "^16.13.0" | ||
}, | ||
@@ -77,0 +68,0 @@ "engines": { |
6068
51