-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
STCOR-745 bump stylelint to v15, and co-deps too
Bump `stylelint` to `v15`, `stylelint-config-standard` to `v34`. The community config standard has evolved quite a bit since we first implemented this, necessitating turning off several warnings in `.stylelintrc` in order for code as-is to pass; see STCOR-746 for the details on removing these exceptions. Refs STCOR-745
- Loading branch information
Showing
4 changed files
with
1,325 additions
and
2,331 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 |
---|---|---|
@@ -1,3 +1,15 @@ | ||
{ | ||
"extends": "stylelint-config-standard" | ||
"extends": "stylelint-config-standard", | ||
|
||
"rules": { | ||
"alpha-value-notation": null, | ||
"color-function-notation": null, | ||
"declaration-block-no-redundant-longhand-properties": null, | ||
"function-no-unknown": null, | ||
"import-notation": null, | ||
"media-feature-range-notation": null, | ||
"no-descending-specificity": null, | ||
"selector-class-pattern": null, | ||
"value-keyword-case": 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.