-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Prettier from the Stylelint config (#33)
Relies on pure Stylelint config based on the Bootstrap's config instead. 1. Removes Prettier dependency. 2. Restores single quote, what is our preference in general. 3. Breaks Prettier's leading zero preference: values like `0.5` must be .5 now; since the leading zero is optional, it's forced to remove it. 4. Breaks Prettier's no newline preference: multiline properties require new line after colon from now.
- Loading branch information
1 parent
1dde2fa
commit cf23453
Showing
2 changed files
with
3 additions
and
5 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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@oacore/stylelint-config-base", | ||
"version": "1.0.6", | ||
"description": "Global stylelint configuration across our projects", | ||
"description": "CORE style guide and standard for CSS", | ||
"author": "CORE Team <[email protected]>", | ||
"homepage": "https://github.com/oacore/configs#readme", | ||
"license": "MIT", | ||
|
@@ -12,9 +12,7 @@ | |
}, | ||
"dependencies": { | ||
"stylelint-config-css-modules": "^2.2.0", | ||
"stylelint-config-prettier": "^8.0.1", | ||
"stylelint-config-twbs-bootstrap": "^2.0.3", | ||
"stylelint-prettier": "^1.1.2" | ||
"stylelint-config-twbs-bootstrap": "^2.0.3" | ||
}, | ||
"peerDependencies": { | ||
"stylelint": ">=13.6.0" | ||
|