Skip to content

Commit

Permalink
Add stylelint
Browse files Browse the repository at this point in the history
Let's use stylelint to lint our css files.
  • Loading branch information
Marvin Chin committed Apr 12, 2019
1 parent db4ce52 commit 684a00c
Show file tree
Hide file tree
Showing 3 changed files with 1,521 additions and 52 deletions.
9 changes: 9 additions & 0 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
"extends": "stylelint-config-standard",
"rules": {
"indentation": 4,
// MarkBind generates some blank CSS files when initialising a site,
// which violates the no-empty-source rule
"no-empty-source": null
}
};
Loading

0 comments on commit 684a00c

Please sign in to comment.