Skip to content
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
30 changes: 0 additions & 30 deletions .changeset/gold-chairs-jog.md

This file was deleted.

31 changes: 31 additions & 0 deletions engineering-toolkit/eslint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# @vue-storefront/eslint-config

## 4.0.0

### Major Changes

**[BREAKING]**: The `@vue-storefront/eslint-config` is migrated to support ESLint v9 and FlatConfig. Please upgrade following way:

**Step 1: Update Dependencies**

First, update your project dependencies to use the latest versions of ESLint and Prettier.

```bash
yarn add -D eslint@^9 prettier@^3 @vue-storefront/eslint-config@^4
```

**Step 2: Update ESLint Configuration**

Replace your existing ESLint configuration with the new configuration format. Below is a basic example from the `README.md`:

```js
import { ecma, typescript, style, concat } from "@vue-storefront/eslint-config";

export default concat(
ecma(),
typescript(),
style()
// Here it's a place for you custom configuration
);
```

Read more about FlatConfig in [ESLint docs](https://eslint.org/docs/latest/use/configure/).

## 3.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion engineering-toolkit/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-storefront/eslint-config",
"version": "3.1.3",
"version": "4.0.0",
"type": "module",
"main": "src/index.js",
"license": "MIT",
Expand Down
Loading