-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove stylelint rules that are no longer needed with later versions. (…
- Loading branch information
Showing
20 changed files
with
13 additions
and
100 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,73 +1,9 @@ | ||
extends: | ||
- stylelint-config-standard | ||
- stylelint-config-standard-scss | ||
rules: | ||
at-rule-disallowed-list: | ||
- debug | ||
at-rule-no-unknown: null | ||
at-rule-no-vendor-prefix: true | ||
block-no-empty: null | ||
color-hex-length: short | ||
color-named: never | ||
color-no-invalid-hex: true | ||
declaration-block-no-redundant-longhand-properties: null | ||
declaration-block-single-line-max-declarations: 1 | ||
declaration-empty-line-before: null | ||
declaration-no-important: true | ||
declaration-property-value-disallowed-list: | ||
border: | ||
- none | ||
border-top: | ||
- none | ||
border-right: | ||
- none | ||
border-bottom: | ||
- none | ||
border-left: | ||
- none | ||
font-family-name-quotes: null | ||
function-url-quotes: always | ||
length-zero-no-unit: true | ||
max-nesting-depth: | ||
- 4 | ||
- ignoreAtRules: | ||
- each | ||
- media | ||
- supports | ||
- include | ||
media-feature-name-no-vendor-prefix: true | ||
media-feature-range-notation: prefix | ||
no-descending-specificity: null | ||
property-no-unknown: true | ||
property-no-vendor-prefix: true | ||
rule-empty-line-before: | ||
- always-multi-line | ||
- except: | ||
- first-nested | ||
ignore: | ||
- after-comment | ||
scss/at-extend-no-missing-placeholder: true | ||
scss/at-function-pattern: "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$" | ||
scss/load-no-partial-leading-underscore: true | ||
scss/at-import-partial-extension-disallowed-list: | ||
- scss | ||
scss/at-mixin-pattern: "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$" | ||
scss/at-rule-no-unknown: true | ||
scss/comment-no-empty: null | ||
#scss/dollar-variable-colon-space-after: always | ||
scss/dollar-variable-colon-space-before: never | ||
scss/dollar-variable-pattern: "^[_]?[a-z]+([a-z0-9-]+[a-z0-9]+)?$" | ||
scss/no-global-function-names: null | ||
#scss/percent-placeholder-pattern: "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$" | ||
#scss/selector-no-redundant-nesting-selector: true | ||
selector-class-pattern: | ||
- "^[a-z0-9\\-]+$" | ||
- message: Selector should be written in lowercase with hyphens (selector-class-pattern) | ||
selector-max-compound-selectors: 3 | ||
selector-max-id: 0 | ||
#selector-no-qualifying-type: true | ||
selector-no-vendor-prefix: true | ||
selector-pseudo-element-colon-notation: double | ||
selector-pseudo-element-no-unknown: true | ||
shorthand-property-no-redundant-values: true | ||
value-no-vendor-prefix: true |
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
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,6 +1,5 @@ | ||
@use "../abstracts/variables"; | ||
|
||
// stylelint-disable property-no-vendor-prefix | ||
body { | ||
overflow-x: hidden; | ||
|
||
|
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -50,7 +50,7 @@ | |
background-color: rgba( | ||
#fff, | ||
0.8 | ||
); // stylelint-disable-line color-no-hex | ||
); | ||
} | ||
|
||
&--alt { | ||
|
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
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