This repository was archived by the owner on Oct 8, 2021. It is now read-only.
File tree 6 files changed +64
-0
lines changed
6 files changed +64
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "remove-empty-rulesets" : true ,
3
+ "always-semicolon" : true ,
4
+ "color-case" : " lower" ,
5
+ "block-indent" : " \t " ,
6
+ "color-shorthand" : true ,
7
+ "element-case" : " lower" ,
8
+ "eof-newline" : true ,
9
+ "leading-zero" : false ,
10
+ "quotes" : " double" ,
11
+ "sort-order-fallback" : " abc" ,
12
+ "space-before-colon" : " " ,
13
+ "space-after-colon" : " " ,
14
+ "space-before-combinator" : " " ,
15
+ "space-after-combinator" : " " ,
16
+ "space-between-declarations" : " \n " ,
17
+ "space-before-opening-brace" : " " ,
18
+ "space-after-opening-brace" : " \n " ,
19
+ "space-after-selector-delimiter" : " \n " ,
20
+ "space-before-selector-delimiter" : " " ,
21
+ "space-before-closing-brace" : " \n " ,
22
+ "strip-spaces" : true ,
23
+ "unitless-zero" : true
24
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "adjoining-classes": false,
3
+ "box-model": false,
4
+ "box-sizing": false,
5
+ "compatible-vendor-prefixes": false,
6
+ "duplicate-background-images": false,
7
+ "import": false,
8
+ "important": false,
9
+ "outline-none": false,
10
+ "overqualified-elements": false,
11
+ "text-indent": false,
12
+
13
+ // These are not ideal but needed for current theme
14
+ "qualified-headings": false,
15
+ "regex-selectors": false,
16
+ "unqualified-attributes": false,
17
+ "universal-selector": false,
18
+ "unique-headings": false,
19
+ "vendor-prefix": false
20
+ }
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ grunt.registerTask( "build:js", [
30
30
] ) ;
31
31
grunt . registerTask ( "build:css" , [
32
32
"cssbuild" ,
33
+ "csslint" ,
33
34
"cssmin"
34
35
] ) ;
35
36
grunt . registerTask ( "build:demos" , [
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ structure : {
3
+ options : {
4
+ config : ".csscomb.json"
5
+ } ,
6
+ files : [ {
7
+ expand : true ,
8
+ src : [ 'css/structure/*.css' ]
9
+ } ]
10
+ }
11
+ } ;
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ options : {
3
+ csslintrc : ".csslintrc"
4
+ } ,
5
+ src : [ "css/**/*.css" ]
6
+ } ;
Original file line number Diff line number Diff line change 36
36
"grunt-contrib-concat" : " 0.3.0" ,
37
37
"grunt-contrib-connect" : " 0.3.0" ,
38
38
"grunt-contrib-copy" : " 0.4.1" ,
39
+ "grunt-contrib-csslint" : " 0.4.0" ,
39
40
"grunt-contrib-cssmin" : " 0.6.1" ,
40
41
"grunt-contrib-jshint" : " 0.6.3" ,
41
42
"grunt-contrib-requirejs" : " 0.4.1" ,
42
43
"grunt-contrib-uglify" : " 0.2.6" ,
43
44
"grunt-coveralls" : " 0.3.0" ,
45
+ "grunt-csscomb" : " 1.2.1" ,
44
46
"grunt-esformatter" : " 1.0.1" ,
45
47
"grunt-git-authors" : " 2.0.0" ,
46
48
"grunt-hash-manifest" : " 0.5.3" ,
You can’t perform that action at this time.
0 commit comments