mirror of
https://github.com/pure-css/pure.git
synced 2024-11-07 21:34:24 +00:00
Add CSSLint and grunt test
task to lint CSS in the src/ dir
This gives basic linting of src CSS, but ignores linting normalize.css.
This commit is contained in:
parent
30ae5a02de
commit
4783db4201
5
.csslintrc
Normal file
5
.csslintrc
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"box-sizing" : false,
|
||||||
|
"display-property-grouping": false,
|
||||||
|
"star-property-hack" : false
|
||||||
|
}
|
22
Gruntfile.js
22
Gruntfile.js
@ -135,6 +135,22 @@ grunt.initConfig({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// -- CSSLint Config -------------------------------------------------------
|
||||||
|
|
||||||
|
csslint: {
|
||||||
|
options: {
|
||||||
|
csslintrc: '.csslintrc'
|
||||||
|
},
|
||||||
|
|
||||||
|
src: {
|
||||||
|
src: [
|
||||||
|
'src/**/css/*.css',
|
||||||
|
'!src/base/css/*',
|
||||||
|
'!src/forms/css/forms-core.css'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
// -- CSSMin Config --------------------------------------------------------
|
// -- CSSMin Config --------------------------------------------------------
|
||||||
|
|
||||||
cssmin: {
|
cssmin: {
|
||||||
@ -219,6 +235,7 @@ grunt.initConfig({
|
|||||||
grunt.loadNpmTasks('grunt-contrib-clean');
|
grunt.loadNpmTasks('grunt-contrib-clean');
|
||||||
grunt.loadNpmTasks('grunt-contrib-copy');
|
grunt.loadNpmTasks('grunt-contrib-copy');
|
||||||
grunt.loadNpmTasks('grunt-contrib-concat');
|
grunt.loadNpmTasks('grunt-contrib-concat');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-csslint');
|
||||||
grunt.loadNpmTasks('grunt-contrib-cssmin');
|
grunt.loadNpmTasks('grunt-contrib-cssmin');
|
||||||
grunt.loadNpmTasks('grunt-contrib-compress');
|
grunt.loadNpmTasks('grunt-contrib-compress');
|
||||||
|
|
||||||
@ -237,7 +254,12 @@ grunt.registerTask('import', [
|
|||||||
'import-normalize'
|
'import-normalize'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
grunt.registerTask('test', [
|
||||||
|
'csslint'
|
||||||
|
]);
|
||||||
|
|
||||||
grunt.registerTask('release', [
|
grunt.registerTask('release', [
|
||||||
|
'test',
|
||||||
'default',
|
'default',
|
||||||
'clean:release',
|
'clean:release',
|
||||||
'compress:release'
|
'compress:release'
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
"name": "pure",
|
"name": "pure",
|
||||||
"version": "0.1.1-pre",
|
"version": "0.1.1-pre",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"repository": "git://github.com/yui/pure.git",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"grunt": "~0.4.1",
|
"grunt": "~0.4.1",
|
||||||
"parserlib": "~0.2.2",
|
"parserlib": "~0.2.2",
|
||||||
@ -10,6 +11,7 @@
|
|||||||
"grunt-contrib-copy": "~0.4.1",
|
"grunt-contrib-copy": "~0.4.1",
|
||||||
"grunt-contrib-concat": "~0.3.0",
|
"grunt-contrib-concat": "~0.3.0",
|
||||||
"grunt-contrib-compress": "~0.5.0",
|
"grunt-contrib-compress": "~0.5.0",
|
||||||
"bower": "~0.9.2"
|
"bower": "~0.9.2",
|
||||||
|
"grunt-contrib-csslint": "~0.1.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user