Replace grunt-stylelint with stylelint

This commit is contained in:
rejas
2020-03-19 21:31:04 +01:00
parent 18989d593a
commit 84e9c47a67
3 changed files with 4 additions and 18 deletions

View File

@@ -23,21 +23,6 @@ module.exports = function(grunt) {
"vendor/vendor.js"
]
},
stylelint: {
simple: {
options: {
fix: fix,
configFile: ".stylelintrc.json"
},
src: [
"css/main.css",
"modules/default/calendar/calendar.css",
"modules/default/clock/clock_styles.css",
"modules/default/currentweather/currentweather.css",
"modules/default/weatherforcast/weatherforcast.css"
]
}
},
jsonlint: {
main: {
src: [
@@ -92,7 +77,6 @@ module.exports = function(grunt) {
}
});
grunt.loadNpmTasks("grunt-eslint");
grunt.loadNpmTasks("grunt-stylelint");
grunt.loadNpmTasks("grunt-jsonlint");
grunt.loadNpmTasks("grunt-markdownlint");