Skip to content

Commit 3b958e8

Browse files
dependabot[bot]mfranzkegithub-actions[bot]
authored
build(deps-dev): bump stylelint from 14.16.1 to 16.20.0 (#3040)
* build(deps-dev): bump stylelint from 14.16.1 to 16.20.0 Bumps [stylelint](https://github.com/stylelint/stylelint) from 14.16.1 to 16.20.0. - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](stylelint/stylelint@14.16.1...16.20.0) --- updated-dependencies: - dependency-name: stylelint dependency-version: 16.20.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * refactor: removed unnecessary package * refactor: added new rule * refactor: added configuration to ignore node_modules folder * refactor: optimized (S)CSS code by stylelint aspects * refactor(test): auto-format codebase * Update README.md * Update README.md * Update index.css --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Maximilian Franzke <[email protected]> Co-authored-by: Maximilian Franzke <[email protected]> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent cbcd9e3 commit 3b958e8

File tree

12 files changed

+574
-463
lines changed

12 files changed

+574
-463
lines changed

.stylelintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

.stylelintrc.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
{
2-
"extends": [
3-
"stylelint-config-standard-scss",
4-
"stylelint-config-prettier-scss"
5-
],
2+
"extends": ["stylelint-config-standard-scss"],
63
"rules": {
74
"at-rule-no-unknown": null,
85
"scss/at-rule-no-unknown": true,
96
"scss/at-extend-no-missing-placeholder": null,
10-
"scss/at-mixin-argumentless-call-parentheses": null
7+
"scss/at-mixin-argumentless-call-parentheses": null,
8+
"declaration-property-value-no-unknown": true
119
}
1210
}

0 commit comments

Comments
 (0)