Skip to content

Commit

Permalink
Using Gulp for development
Browse files Browse the repository at this point in the history
  • Loading branch information
godofredoninja committed Sep 16, 2019
1 parent abacd51 commit a855fe7
Show file tree
Hide file tree
Showing 252 changed files with 6,936 additions and 1,157 deletions.
8 changes: 6 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
trim_trailing_whitespace = true

[*.hbs]
indent_size = 4
insert_final_newline = false

[*.md]
trim_trailing_whitespace = false
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -476,3 +476,8 @@ __pycache__/
.sass-lint.yml
.cache-loader
yarn-error.log
*.swp
*.zip
yarn.lock


39 changes: 39 additions & 0 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
module.exports = {
'extends': 'stylelint-config-standard',
'rules': {
'no-empty-source': null,
'declaration-block-trailing-semicolon': null,
'number-leading-zero': null,
'color-hex-case': null,
'selector-list-comma-newline-after': null,
'declaration-block-single-line-max-declarations': 3,
// 'string-quotes': 'double',
'at-rule-no-unknown': [
true,
{
'ignoreAtRules': [
'extend',
'at-root',
'debug',
'warn',
'error',
'if',
'else',
'for',
'each',
'while',
'mixin',
'include',
'content',
'return',
'function',
'tailwind',
'apply',
'responsive',
'variants',
'screen',
],
},
],
},
};
1,111 changes: 674 additions & 437 deletions LICENSE

Large diffs are not rendered by default.

Loading

0 comments on commit a855fe7

Please sign in to comment.