Skip to content

Commit

Permalink
Bump eslint-plugin-perfectionist from 2.11.0 to 3.8.0 (frontvibe#356)
Browse files Browse the repository at this point in the history
* Bump eslint-plugin-perfectionist from 2.11.0 to 3.8.0

Bumps [eslint-plugin-perfectionist](https://github.com/azat-io/eslint-plugin-perfectionist) from 2.11.0 to 3.8.0.
- [Release notes](https://github.com/azat-io/eslint-plugin-perfectionist/releases)
- [Changelog](https://github.com/azat-io/eslint-plugin-perfectionist/blob/main/changelog.md)
- [Commits](azat-io/eslint-plugin-perfectionist@v2.11.0...v3.8.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-perfectionist
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix eslint plugin + format

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Thomas Cristina de Carvalho <[email protected]>
  • Loading branch information
dependabot[bot] and thomasKn authored Oct 8, 2024
1 parent a08b863 commit b8d6067
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 52 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
},
extends: [
'@remix-run/eslint-config',
'plugin:perfectionist/recommended-natural',
'plugin:perfectionist/recommended-natural-legacy',
'plugin:hydrogen/typescript',
],
ignorePatterns: ['studio/*'],
Expand Down
2 changes: 1 addition & 1 deletion app/components/product/ProductCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function ProductCard(props: {
const sizes = [
'(min-width: 1024px)',
columns?.desktop ? `${100 / columns.desktop}vw` : '33vw',
columns?.mobile ? `${100 / columns.mobile}vw` : '100vw'
columns?.mobile ? `${100 / columns.mobile}vw` : '100vw',
].join(', ');

/**
Expand Down
2 changes: 1 addition & 1 deletion app/components/product/VariantPrice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function VariantPrice({
<>
{compareAtPrice && (
<ShopifyMoney
className=" text-muted-foreground line-through"
className="text-muted-foreground line-through"
data={compareAtPrice}
/>
)}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-plugin-hydrogen": "^0.12.3",
"eslint-plugin-perfectionist": "^2.11.0",
"eslint-plugin-perfectionist": "^3.8.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
Expand Down
90 changes: 42 additions & 48 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b8d6067

Please sign in to comment.