Skip to content

Commit

Permalink
4.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Fantauzzi committed Jan 1, 2024
1 parent 4cbfa1f commit 9f1b709
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> 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.1.0-2
## 4.1.0-3

- Add next flavor

Expand Down
14 changes: 13 additions & 1 deletion examples/next.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,19 @@ module.exports = {
es2021: true,
node: true,
},
extends: ["eslint-config-gev/next"],
overrides: [
{
files: ["*.ts", "*.tsx"],
extends: ["eslint-config-gev/ts", "eslint-config-gev/next"],
parser: "@typescript-eslint/parser",
parserOptions: {
tsconfigRootDir: __dirname,
project: ["./tsconfig.json"],
ecmaVersion: 12,
sourceType: "module",
},
},
],
ignorePatterns: [],
rules: {},
}
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-gev",
"version": "4.1.2",
"version": "4.1.3",
"description": "Curated ESLint configs for TS/JS and React/RN projects",
"main": "index.js",
"bin": "bin.js",
Expand Down

0 comments on commit 9f1b709

Please sign in to comment.