Skip to content

Commit

Permalink
Merge pull request #542 from fishbrain/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
lhansford authored Sep 2, 2024
2 parents 14eb467 + 4489377 commit 677e9f9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@fishbrain/eslint-config-monorepo",
"private": true,
"description": "ESLint configs for Fishbrain projects",
"version": "6.0.2",
"version": "6.0.3",
"workspaces": [
"packages/*"
],
Expand Down
6 changes: 5 additions & 1 deletion packages/base/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,11 @@ export default tseslint.config(
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{ argsIgnorePattern: '^_' },
{
ignoreRestSiblings: true,
varsIgnorePattern: '^_',
argsIgnorePattern: '^_',
},
],
'@typescript-eslint/no-useless-constructor': 'error',
'@typescript-eslint/promise-function-async': 'error',
Expand Down
4 changes: 2 additions & 2 deletions packages/base/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fishbrain/eslint-config-base",
"packageManager": "yarn@4.4.1",
"version": "6.0.2",
"version": "6.0.3",
"type": "module",
"exports": "./index.js",
"scripts": {
Expand All @@ -10,7 +10,7 @@
"dependencies": {
"@eslint/js": "^9.9.1",
"eslint": "^9.9.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-jest": "^28.8.1",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript-eslint": "^8.3.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fishbrain/eslint-config-react",
"packageManager": "yarn@4.4.1",
"version": "6.0.2",
"version": "6.0.3",
"type": "module",
"exports": "./index.js",
"scripts": {
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ __metadata:
"@eslint/js": "npm:^9.9.1"
"@types/eslint__js": "npm:^8.42.3"
eslint: "npm:^9.9.1"
eslint-plugin-jest: "npm:^28.8.0"
eslint-plugin-jest: "npm:^28.8.1"
eslint-plugin-prettier: "npm:^5.2.1"
jest: "npm:^29.7.0"
prettier: "npm:^3.3.3"
Expand Down Expand Up @@ -2227,9 +2227,9 @@ __metadata:
languageName: node
linkType: hard

"eslint-plugin-jest@npm:^28.8.0":
version: 28.8.0
resolution: "eslint-plugin-jest@npm:28.8.0"
"eslint-plugin-jest@npm:^28.8.1":
version: 28.8.1
resolution: "eslint-plugin-jest@npm:28.8.1"
dependencies:
"@typescript-eslint/utils": "npm:^6.0.0 || ^7.0.0 || ^8.0.0"
peerDependencies:
Expand All @@ -2241,7 +2241,7 @@ __metadata:
optional: true
jest:
optional: true
checksum: 10c0/cb702701c20224d813b7d7515ed3fe4562b92cd4233db356b0948e0765a382a9887ae7dfd13191c2cabecbb4a6cbbd141f309618830b251c8f86a7f950e7f50b
checksum: 10c0/340f5021e7eadfc6f3c1ad9378fafb9b1ead10f07636ba2e9d5ec0abd2f2604b4bc301cbb9658f84534962244958ac6a037bf8a6bd64e341542e3c5dccc2bc95
languageName: node
linkType: hard

Expand Down

0 comments on commit 677e9f9

Please sign in to comment.