grunt-stylelint
Advanced tools
Comparing version 0.17.0 to 0.18.0
@@ -26,4 +26,3 @@ /*! | ||
options: { | ||
configFile: 'test/simple/.stylelintrc', | ||
syntax: 'less' | ||
configFile: 'test/simple/.stylelintrc' | ||
}, | ||
@@ -34,4 +33,3 @@ src: 'test/simple/**/*.{css,less}' | ||
options: { | ||
configFile: 'test/empty/.stylelintrc', | ||
syntax: 'less' | ||
configFile: 'test/empty/.stylelintrc' | ||
}, | ||
@@ -44,3 +42,2 @@ src: 'test/empty/**/*.{css,less}' | ||
configFile: 'test/simple/.stylelintrc', | ||
syntax: 'less', | ||
failOnError: false | ||
@@ -47,0 +44,0 @@ }, |
# grunt-stylelint Release History | ||
## v0.18.0 / 2022-03-29 | ||
* Update stylelint to 14.5.0 (Виктор Виктор) | ||
* build: Bump stylelint-less from ^1.0.3 to ^1.0.5 (James D. Forrester) | ||
* build: Add codeql code scanning tool to CI (James D. Forrester) | ||
## v0.17.0 / 2021-10-21 | ||
@@ -4,0 +9,0 @@ * Drop Node 10 support (James D. Forrester) |
{ | ||
"name": "grunt-stylelint", | ||
"version": "0.17.0", | ||
"version": "0.18.0", | ||
"description": "A Grunt checker for CSS files using Stylelint", | ||
"scripts": { | ||
"test": "env FORCE_COLOR=0 grunt test" | ||
"test": "env NO_COLOR=1 grunt test" | ||
}, | ||
@@ -23,6 +23,6 @@ "repository": { | ||
"dependencies": { | ||
"chalk": "^4.1.0" | ||
"chalk": "^4.1.2" | ||
}, | ||
"peerDependencies": { | ||
"stylelint": "^14.0.0" | ||
"stylelint": "14.x" | ||
}, | ||
@@ -33,10 +33,12 @@ "engines": { | ||
"devDependencies": { | ||
"eslint-config-wikimedia": "0.20.0", | ||
"eslint-config-wikimedia": "0.22.1", | ||
"grunt": "1.4.1", | ||
"grunt-contrib-clean": "2.0.0", | ||
"grunt-contrib-nodeunit": "4.0.0", | ||
"grunt-eslint": "23.0.0", | ||
"grunt-eslint": "24.0.0", | ||
"lodash": "4.17.21", | ||
"stylelint": "13.8.0" | ||
"postcss-less": "^6.0.0", | ||
"stylelint": "^14.5.0", | ||
"stylelint-less": "^1.0.5" | ||
} | ||
} |
@@ -113,7 +113,1 @@ [![NPM version](https://badge.fury.io/js/grunt-stylelint.svg)](http://badge.fury.io/js/grunt-stylelint) | ||
Automatically fix, where possible, violations reported by rules. If `grunt` is run with `--fix` and this is not explicitly set, it will be set to `true`. | ||
#### syntax | ||
Type: `string` | ||
Values: `"scss"`|`"less"`|`"sugarss"` | ||
Which syntax standard should be used to parse source stylesheets. If this is unset, `stylelint` will attempt to guess which syntax is used by the files' extensions. |
test/output/simpleRule.css | ||
2:9 ✖ Expected "#DDD" to be "#ddd" color-hex-case | ||
2:9 ✖ Expected "#DDD" to be "#ddd" color-hex-case | ||
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
17489
19
9
136
113
Updatedchalk@^4.1.2