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

Commit 57c0fa7

Browse files
committed
Add stylelint to lint the css file
Configure the indentation to 4 spaces Fix reported issues: Unexpected missing generic font family font-family-no-missing-generic-family-keyword Expected newline after "," selector-list-comma-newline-after Expected "#4CAF50" to be "#4caf50" color-hex-case Commit in package-lock.json for faster processing by CI. One can then use: npm install npm test Bug: T254393 Change-Id: Ibeb3af13650593fdd8ad219f3123de5727942d5d
1 parent c5f3a38 commit 57c0fa7

5 files changed

Lines changed: 2481 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules/

.stylelintrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "stylelint-config-standard",
3+
"rules": {
4+
"indentation": 4
5+
}
6+
}

0 commit comments

Comments
 (0)