-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Development environment and husky added
- Loading branch information
Shiva Poudel
committed
Feb 12, 2019
1 parent
286b2a2
commit a187323
Showing
24 changed files
with
3,965 additions
and
3,099 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.min.js | ||
|
||
/assets/js/jquery-tiptip/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"root": true, | ||
"env": { | ||
"browser": true, | ||
"node": true | ||
}, | ||
"globals": { | ||
"wp": true | ||
}, | ||
"rules": { | ||
"camelcase": 0, | ||
"indent": 0, | ||
"max-len": [ 2, { "code": 142 } ], | ||
"no-console": 1 | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"extends": "stylelint-config-wordpress", | ||
"rules": { | ||
"at-rule-empty-line-before": null, | ||
"at-rule-no-unknown": null, | ||
"comment-empty-line-before": null, | ||
"declaration-block-no-duplicate-properties": null, | ||
"declaration-colon-newline-after": null, | ||
"declaration-property-unit-whitelist": null, | ||
"font-weight-notation": null, | ||
"font-family-name-quotes": null, | ||
"font-family-no-missing-generic-family-keyword": null, | ||
"max-line-length": null, | ||
"no-descending-specificity": null, | ||
"no-duplicate-selectors": null, | ||
"rule-empty-line-before": null, | ||
"selector-class-pattern": null, | ||
"string-quotes": "single", | ||
"value-keyword-case": null, | ||
"value-list-comma-newline-after": null | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.