Skip to content

Commit

Permalink
v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Sep 25, 2017
1 parent 0be9ac6 commit 2e37e73
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="0.4.2"></a>
## [0.4.2](https://github.com/hugomrdias/prettier-stylelint/compare/v0.4.1...v0.4.2) (2017-09-25)


### Bug Fixes

* add repo url ([0be9ac6](https://github.com/hugomrdias/prettier-stylelint/commit/0be9ac6))



<a name="0.4.1"></a>
## [0.4.1](https://github.com/hugomrdias/prettier-stylelint/compare/v0.4.0...v0.4.1) (2017-09-25)

Expand Down
29 changes: 19 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prettier-stylelint",
"version": "0.4.1",
"version": "0.4.2",
"description": "code > prettier > stylelint > formatted code",
"repository": "hugomrdias/prettier-stylelint",
"main": "index.js",
Expand All @@ -24,10 +24,8 @@
"validate": "run-p lint test",
"precommit": "yarn validate",
"version": "yarn changelog && git add CHANGELOG.md",
"cov":
"yarn test && nyc report --reporter=html && hs coverage -s -o -c-1",
"cov:report":
"nyc report --reporter=text-lcov > coverage.lcov && codecov",
"cov": "yarn test && nyc report --reporter=html && hs coverage -s -o -c-1",
"cov:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"devDependencies": {
Expand Down Expand Up @@ -63,17 +61,28 @@
"extends": "halo/node"
},
"stylelint": {
"extends": ["stylelint-config-recommended", "./config"],
"extends": [
"stylelint-config-recommended",
"./config"
],
"rules": {
"string-quotes": ["single"],
"string-quotes": [
"single"
],
"indentation": [
4,
{
"except": ["value"]
"except": [
"value"
]
}
],
"color-hex-case": ["upper"],
"color-hex-length": ["short"]
"color-hex-case": [
"upper"
],
"color-hex-length": [
"short"
]
}
},
"prettier": {
Expand Down

0 comments on commit 2e37e73

Please sign in to comment.