Skip to content

Commit

Permalink
Merge branch 'master' into no-fallthrough-rule
Browse files Browse the repository at this point in the history
  • Loading branch information
askoufis authored Apr 15, 2024
2 parents 62746e8 + c2d1930 commit 132dee4
Show file tree
Hide file tree
Showing 5 changed files with 242 additions and 195 deletions.
7 changes: 7 additions & 0 deletions .changeset/afraid-candles-breathe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'eslint-config-seek': patch
---

Disable [`@typescript-eslint/consistent-type-definition` rule][rule]

[rule]: https://typescript-eslint.io/rules/consistent-type-definitions/
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# eslint-config-seek

## 13.0.0

### Major Changes

- Upgrade Typescript Eslint to 7.2.0 to support Typescript 5.4. ([#136](https://github.com/seek-oss/eslint-config-seek/pull/136))

This bumps the minimum required versions of Node.js to 18.18.0, Eslint to 8.56.0 and Typescript to 4.7.5 due to a breaking change introduced by Typescript Eslint in 7.0.0.

## 12.1.1

### Patch Changes
Expand Down
1 change: 1 addition & 0 deletions base.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ const baseConfig = {
},
rules: {
'@typescript-eslint/array-type': [ERROR, { default: 'array-simple' }],
'@typescript-eslint/consistent-type-definitions': OFF,
'@typescript-eslint/no-unused-expressions': ERROR,
'@typescript-eslint/no-unused-vars': [
ERROR,
Expand Down
21 changes: 12 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seek",
"version": "12.1.1",
"version": "13.0.0",
"description": "ESLint configuration used by SEEK",
"main": "index.js",
"files": [
Expand Down Expand Up @@ -29,12 +29,12 @@
"@babel/eslint-parser": "^7.22.6",
"@babel/preset-react": "^7.22.5",
"@finsit/eslint-plugin-cypress": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-rulesdir": "^0.2.2",
Expand All @@ -43,16 +43,19 @@
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@changesets/get-github-info": "^0.5.2",
"eslint": "^8.44.0",
"eslint": "^8.56.0",
"prettier": "^2.8.4",
"typescript": "~5.1.6"
"typescript": "~5.4.2"
},
"peerDependencies": {
"eslint": ">=7",
"typescript": ">=4.5"
"eslint": ">=8.56.0",
"typescript": ">=4.7.5"
},
"engines": {
"node": ">=18.18.0"
},
"packageManager": "pnpm@8.6.6",
"volta": {
"node": "18.12.1"
"node": "18.18.0"
}
}
Loading

0 comments on commit 132dee4

Please sign in to comment.