-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The stylelint config was referencing a package that wasn't being installed. Also upgrades the CLI.
- Loading branch information
1 parent
c72ef93
commit fbf6b36
Showing
5 changed files
with
15 additions
and
9 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 |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
plugins | ||
user_trunk.yaml | ||
user.yaml | ||
tmp |
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,14 +1,16 @@ | ||
version: 0.1 | ||
cli: | ||
version: 1.18.1 | ||
version: 1.19.0 | ||
plugins: | ||
sources: | ||
- id: trunk | ||
uri: https://github.com/trunk-io/plugins | ||
ref: v1.4.0 | ||
ref: v1.4.2 | ||
|
||
- id: configs | ||
local: . | ||
# see plugin.yaml for enabled linters | ||
# lint: | ||
lint: | ||
disabled: | ||
- eslint | ||
# enabled: [] |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/** @type {import('stylelint').Config} */ | ||
module.exports = { | ||
extends: ["stylelint-config-standard-scss", "stylelint-config-clean-order"], | ||
}; |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -74,7 +74,10 @@ lint: | |
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected]: | ||
packages: | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
|
@@ -97,7 +100,7 @@ lint: | |
- configs/rustfmt.toml | ||
- configs/.shellcheckrc | ||
- configs/.sqlfluff | ||
- configs/.stylelintrc.yaml | ||
- configs/.stylelintrc.js | ||
- configs/svgo.config.js | ||
- configs/.yamllint.yaml | ||
|
||
|