Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Commit d13b067

Browse files
committed
Linting: Fixed linting and linting errors
1 parent f6f2b11 commit d13b067

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.csslintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"box-sizing": false,
55
"compatible-vendor-prefixes": false,
66
"duplicate-background-images": false,
7+
"font-sizes": false,
78
"import": false,
89
"important": false,
910
"outline-none": false,

demos/buttons.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<h1>CSS Chassis</h1>
1515

16-
<h2>Extra Small Buttons<h2>
16+
<h2>Extra Small Buttons</h2>
1717
<p>
1818
<button class="btn btn-xs">Default</button>
1919
<button class="btn btn-primary btn-xs">Primary</button>

tasks/options/csslint.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
module.exports = {
2-
src: [ "dist/css/*.css" ]
2+
src: [ "dist/css/*.css" ],
3+
options: {
4+
csslintrc: ".csslintrc"
5+
}
36
};

0 commit comments

Comments
 (0)