Skip to content

Commit

Permalink
4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Fantauzzi committed May 9, 2024
1 parent d14a0a4 commit 8b97da4
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 28 deletions.
3 changes: 0 additions & 3 deletions .husky/post-checkout
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

bun i
3 changes: 0 additions & 3 deletions .husky/post-merge
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

bun i
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

bun pre-commit
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
> Changes to the `js` flavor are also applied to all the other flavors.
> Changes to the `ts` flavor are also applied to `react` and `react-native` flavors.
## 4.4.0

- Upgrade deps

## 4.3.0

- Removed `require-extensions` plugin. Bun ftw!
Expand Down
Binary file modified bun.lockb
Binary file not shown.
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "eslint-config-gev",
"version": "4.3.0",
"version": "4.4.0",
"description": "Curated ESLint configs for TS, JS, Next, React, and React Native projects",
"author": "SrBrahma",
"main": "index.js",
"bin": "bin.js",
"scripts": {
"format": "biome check --apply-unsafe . && eslint --fix . package.json",
"format:check": "biome check . && eslint . package.json",
"pre-commit": "bun format && bun test && bun start && git add -A",
"prepare": "husky install",
"pre-commit": "bun format && bun start && git add -A",
"prepare": "husky",
"start": "bun scripts/makeTsExtensions.ts",
"test:watch": "bun test --watch",
"watch": "bun --watch scripts/makeTsExtensions.ts"
Expand All @@ -31,29 +31,29 @@
"javascript"
],
"dependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"@rushstack/eslint-patch": "^1.6.1",
"@stylistic/eslint-plugin": "1.5.3",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"citty": "0.1.5",
"@next/eslint-plugin-next": "^14.2.3",
"@rushstack/eslint-patch": "^1.10.2",
"@stylistic/eslint-plugin": "1.7.2",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"citty": "0.1.6",
"eslint": "8.56.0",
"eslint-config-biome": "^1.4.1",
"eslint-plugin-jsdoc": "48.0.2",
"eslint-plugin-json-files": "^4.1.0",
"eslint-config-biome": "^1.5.3",
"eslint-plugin-jsdoc": "48.2.3",
"eslint-plugin-json-files": "^4.2.0",
"eslint-plugin-no-autofix": "1.2.3",
"eslint-plugin-no-relative-import-paths": "1.5.3",
"eslint-plugin-prefer-arrow-functions": "3.2.4",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-no-relative-import-paths": "1.5.4",
"eslint-plugin-prefer-arrow-functions": "3.3.2",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native": "4.1.0",
"eslint-plugin-require-extensions": "0.1.3",
"eslint-plugin-unused-imports": "3.0.0"
"eslint-plugin-unused-imports": "3.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@biomejs/biome": "^1.7.1",
"@sindresorhus/tsconfig": "5.0.0",
"@types/bun": "^1.0.0",
"husky": "8.0.3"
"@types/bun": "^1.1.0",
"husky": "9.0.11"
}
}

0 comments on commit 8b97da4

Please sign in to comment.