Skip to content

Commit 35e3c6c

Browse files
build(deps-dev): bump prettier from 2.8.8 to 3.0.0 (#502)
Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@2.8.8...3.0.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 615a84e commit 35e3c6c

File tree

14 files changed

+979
-603
lines changed

14 files changed

+979
-603
lines changed

.husky/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
# shellcheck source=./_/husky.sh
44
. "$(dirname "$0")/_/husky.sh"
55

6+
echo "### validate branch name ###"
67
npx validate-branch-name
7-
npx --yes pretty-quick --staged
8+
echo "### lint staged files ###"
9+
npx lint-staged
10+
echo "### npm run lint ###"
811
npm run lint
12+
echo "### check for commit mail ###"
913
node ./scripts/check-commit-mail.mjs

.lintstagedrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"*.scss": "stylelint --fix",
3+
"*.{js,scss,md}": "prettier --write"
4+
}

.stylelintrc.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"declaration-property-value-disallowed-list": null,
1818
"scss/percent-placeholder-pattern": null,
1919
"scss/at-mixin-pattern": null,
20-
"order/properties-alphabetical-order": null,
21-
"scss/at-import-partial-extension": null
20+
"scss/at-import-partial-extension": null,
21+
"scss/dollar-variable-colon-space-after": "always-single-line"
2222
}
2323
}

0 commit comments

Comments
 (0)