Skip to content

Commit

Permalink
Bump @biomejs/biome from 1.7.3 to 1.8.0 (#3522)
Browse files Browse the repository at this point in the history
* Bump @biomejs/biome from 1.7.3 to 1.8.0

Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 1.7.3 to 1.8.0.
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.8.0/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

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

* update biome config & usage

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nicolas Stepien <[email protected]>
  • Loading branch information
dependabot[bot] and nstepien authored Jun 10, 2024
1 parent f358aa9 commit 8fbb750
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
15 changes: 14 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,16 @@
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingComma": "none"
"trailingCommas": "none"
}
},
"css": {
"linter": {
"enabled": false
},
"formatter": {
"enabled": false,
"indentStyle": "space"
}
},
"linter": {
Expand Down Expand Up @@ -90,15 +99,18 @@
"noChildrenProp": "off",
"noConstAssign": "warn",
"noConstantCondition": "warn",
"noConstantMathMinMaxClamp": "warn",
"noConstructorReturn": "warn",
"noEmptyCharacterClassInRegex": "warn",
"noEmptyPattern": "warn",
"noFlatMapIdentity": "warn",
"noGlobalObjectCalls": "warn",
"noInnerDeclarations": "warn",
"noInvalidConstructorSuper": "warn",
"noInvalidNewBuiltin": "warn",
"noInvalidUseBeforeDeclaration": "warn",
"noNewSymbol": "warn",
"noNodejsModules": "off",
"noNonoctalDecimalEscape": "warn",
"noPrecisionLoss": "warn",
"noRenderReturnValue": "warn",
Expand All @@ -118,6 +130,7 @@
"noUnusedVariables": "warn",
"noVoidElementsWithChildren": "warn",
"noVoidTypeReturn": "warn",
"useArrayLiterals": "warn",
"useExhaustiveDependencies": "off",
"useHookAtTopLevel": "warn",
"useIsNan": "warn",
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
"build:types": "tsc -p tsconfig.lib.json && api-extractor run --local --verbose",
"test": "vitest run",
"test:watch": "vitest watch",
"format": "biome format . --write",
"check": "biome check . --error-on-warnings",
"biome:ci": "biome ci . --error-on-warnings",
"format": "biome format --write",
"check": "biome check --error-on-warnings",
"biome:ci": "biome ci --error-on-warnings",
"eslint": "eslint --ext js,ts,tsx --max-warnings 0 --cache --color src test website vite.config.ts",
"eslint:fix": "node --run eslint -- --fix",
"prettier:check": "prettier --check .",
Expand All @@ -61,7 +61,7 @@
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.21.5",
"@biomejs/biome": "1.7.3",
"@biomejs/biome": "1.8.0",
"@faker-js/faker": "^8.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@linaria/core": "^6.0.0",
Expand Down

0 comments on commit 8fbb750

Please sign in to comment.