Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #148

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/friendly-geckos-bathe.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/giant-eagles-fetch.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/orange-hats-run.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-trainers-wait.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/small-jeans-wave.md

This file was deleted.

38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# eslint-config-seek

## 14.0.0

### Major Changes

- Some [language options](https://eslint.org/docs/latest/use/configure/language-options) have been restored to defaults: ([#145](https://github.com/seek-oss/eslint-config-seek/pull/145))

- `sourceType` is now set to the default of `module` (previously `script` in some scenarios).
- `ecmaVersion` is now set to the default of `latest` (previously `2022` and `6`)
- Babel has been removed

- Replace `eslint-plugin-import` with `eslint-plugin-import-x` ([#145](https://github.com/seek-oss/eslint-config-seek/pull/145))

To migrate, any references to `eslint-plugin-import` should be replaced with `eslint-plugin-import-x`, and `import/` rules with `import-x/`.

In addition, it's possible that this may introduce slight behaviour changes.

- Require TypeScript peer dependency >=5.5.4 ([#145](https://github.com/seek-oss/eslint-config-seek/pull/145))

- Migrate to ESLint 9, `@typescript-eslint` 8. ([#145](https://github.com/seek-oss/eslint-config-seek/pull/145))

These changes may affect your project setup if you are customising your ESLint configuration. See the individual migration guides:

- https://eslint.org/docs/latest/use/migrate-to-9.0.0
- https://typescript-eslint.io/blog/announcing-typescript-eslint-v8

In addition, through these major upgrades, some lint rules have changed or have been renamed. You will likely need to autofix and/or adjust your code after running ESLint.

As part of this migration, this project has migrated to Flat ESLint configuration. Read the migration guide: https://eslint.org/docs/latest/use/configure/migration-guide.

### Minor Changes

- Upgrade a number of dependencies. These should have no/minimal impact. ([#145](https://github.com/seek-oss/eslint-config-seek/pull/145))

- `eslint-plugin-cypress`
- `eslint-config-prettier`
- `eslint-plugin-jest`
- `eslint-plugin-react`, `eslint-plugin-react-hooks`

## 13.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seek",
"version": "13.1.1",
"version": "14.0.0",
"description": "ESLint configuration used by SEEK",
"main": "index.js",
"files": [
Expand Down
Loading