Skip to content

Commit ff195c8

Browse files
authored
chore: Upgrade to ESLint 9 and use Prettier separately (#1400)
Fixes #1349
1 parent a4d0408 commit ff195c8

File tree

166 files changed

+1304
-2450
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+1304
-2450
lines changed

CONTRIBUTORS.md

+8-17
Original file line numberDiff line numberDiff line change
@@ -39,33 +39,24 @@ Now, you're all set and you can work on individual packages.
3939
### Tests
4040

4141
There are currently two test setups:
42+
4243
1. Packages use [Vitest](https://vitest.dev/)
4344
2. Examples use [Playwright](https://playwright.dev/)
4445

4546
In either case, you can focus individual tests during development via `it.only`.
4647

47-
### Code formatting (ESLint & Prettier)
48-
49-
This project uses ESLint both for detecting issues in code, as well as for formatting.
48+
### Linting & formatting
5049

51-
Prettier is integrated via an autofixable ESLint rule, therefore it's recommended to autofix all ESLint issues on save in your editor:
52-
53-
```js
54-
// settings.json (VSCode)
55-
{
56-
"[typescriptreact]": {
57-
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
58-
"editor.formatOnSave": true
59-
}
60-
}
61-
```
50+
This project uses ESLint for detecting issues in code, as well as Prettier for formatting.
6251

63-
For ESLint to work correctly, you should open individual packages you work on as the workspace root (e.g. `./packages/next-intl`).
52+
It's recommended to use [an editor integration](https://github.com/molindo/eslint-config-molindo?tab=readme-ov-file#editor-integration) for both, so that autofixable issues are automatically resolved. For editor plugins to work correctly, you should open individual packages you work on as the workspace root (e.g. `next-intl/packages/next-intl` instead of `next-intl`).
6453

65-
Alternatively, you can run ESLint via the command line:
54+
Alternatively, you can run ESLint and Prettier via the command line:
6655

6756
```sh
57+
cd packages/next-intl
6858
pnpm eslint src --fix
59+
pnpm prettier src --write
6960
```
7061

7162
### Pull requests
@@ -93,7 +84,7 @@ Due to this, it's important to clean up commit messages of merged PRs since the
9384

9485
Note that the exclamation mark syntax (`!`) for indicating breaking changes is currently [not supported by Lerna](https://github.com/lerna/lerna/issues/2668#issuecomment-1467902595). Instead, a block like `BREAKING CHANGE: Dropped support for Node.js 12` should be added to the body of the commit message.
9586

96-
Other prefixes that are allowed and will *not* create a release are the following:
87+
Other prefixes that are allowed and will _not_ create a release are the following:
9788

9889
1. `docs`: Documentation-only changes
9990
2. `test`: Missing tests were added or existing ones corrected

docs/.eslintrc.js

-16
This file was deleted.

docs/components/AlgoliaSearch.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
12
import {DocSearch} from '@docsearch/react';
23
import Router from 'next/router';
34
import {TITLE_TEMPLATE_SUFFIX} from 'theme.config';

docs/components/CopyToClipboard.tsx

-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ export default function CopyToClipboard({
2525

2626
const handleClick = useCallback(async () => {
2727
setCopied(true);
28-
if (!navigator?.clipboard) {
29-
console.error('Access to clipboard rejected!');
30-
}
3128
try {
3229
await navigator.clipboard.writeText(getValue());
3330
} catch {

docs/components/Details.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import useLocationHash from 'hooks/useLocationHash';
21
import {useMDXComponents} from 'nextra/mdx';
32
import {ComponentProps, useEffect, useReducer} from 'react';
3+
import useLocationHash from 'hooks/useLocationHash';
44

55
type Props = ComponentProps<'details'>;
66

docs/components/Example.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {clsx} from 'clsx';
2-
import useLocationHash from 'hooks/useLocationHash';
32
import Image from 'next/image';
3+
import useLocationHash from 'hooks/useLocationHash';
44

55
type Props = {
66
demoLink?: string;

docs/components/Footer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import config from 'config';
21
import {useRouter} from 'next/router';
2+
import config from 'config';
33
import FooterLink from './FooterLink';
44
import FooterSeparator from './FooterSeparator';
55

docs/eslint.config.mjs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {getPresets} from 'eslint-config-molindo';
2+
3+
export default await getPresets('typescript', 'react', 'tailwind');

docs/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"scripts": {
55
"dev": "next dev",
6-
"lint": "eslint pages components",
6+
"lint": "eslint pages components && tsc && prettier pages components --check",
77
"test": "echo 'No tests yet'",
88
"build": "next build",
99
"sitemap": "next-sitemap",
@@ -32,11 +32,11 @@
3232
"@types/node": "^20.14.5",
3333
"@types/react": "^18.3.3",
3434
"autoprefixer": "^10.4.19",
35-
"eslint": "^8.56.0",
36-
"eslint-config-molindo": "^7.0.0",
37-
"eslint-config-next": "^14.2.4",
35+
"eslint": "^9.11.1",
36+
"eslint-config-molindo": "^8.0.0",
3837
"next-sitemap": "^4.2.3",
38+
"prettier": "^3.3.3",
3939
"typescript": "^5.5.3"
4040
},
41-
"prettier": "../.prettierrc.json"
41+
"prettier": "eslint-config-molindo/.prettierrc.json"
4242
}

docs/pages/_app.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {SpeedInsights} from '@vercel/speed-insights/next';
2-
import Analytics from 'components/Analytics';
32
import {AppProps} from 'next/app';
43
import {Inter} from 'next/font/google';
54
import {ReactNode} from 'react';
5+
import Analytics from 'components/Analytics';
66
import 'nextra-theme-docs/style.css';
77
import '../styles.css';
88

docs/pages/_document.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Html, Head, Main, NextScript} from 'next/document';
1+
import {Head, Html, Main, NextScript} from 'next/document';
22
import {SkipNavLink} from 'nextra-theme-docs';
33
import React from 'react';
44

docs/pages/blog/next-intl-3-0.mdx

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ Typically, you'll want to call this factory function in a central place in your
5656
These changes bring the existing APIs in line with the new [`createLocalizedPathnamesNavigation` API](/docs/routing/navigation) that allows you to localize pathnames:
5757

5858
```tsx filename="navigation.ts"
59-
import {createLocalizedPathnamesNavigation, Pathnames} from 'next-intl/navigation';
59+
import {
60+
createLocalizedPathnamesNavigation,
61+
Pathnames
62+
} from 'next-intl/navigation';
6063

6164
export const locales = ['en', 'de'] as const;
6265

docs/pages/docs/workflows/typescript.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export default getRequestConfig(async ({locale}) => {
100100

101101
return {
102102
formats
103-
}
103+
};
104104
});
105105
```
106106

docs/tsconfig.json

+3-14
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@
22
"extends": "eslint-config-molindo/tsconfig.json",
33
"compilerOptions": {
44
"baseUrl": ".",
5-
"lib": [
6-
"dom",
7-
"dom.iterable",
8-
"esnext"
9-
],
5+
"lib": ["dom", "dom.iterable", "esnext"],
106
"allowJs": true,
117
"skipLibCheck": true,
128
"forceConsistentCasingInFileNames": true,
@@ -25,13 +21,6 @@
2521
],
2622
"strict": true
2723
},
28-
"include": [
29-
"next-env.d.ts",
30-
"**/*.ts",
31-
"**/*.tsx",
32-
".next/types/**/*.ts"
33-
],
34-
"exclude": [
35-
"node_modules"
36-
]
24+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
25+
"exclude": ["node_modules"]
3726
}

examples/example-app-router-migration/.eslintrc.js

-13
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {getPresets} from 'eslint-config-molindo';
2+
3+
export default await getPresets('typescript', 'react');

examples/example-app-router-migration/package.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"scripts": {
55
"dev": "next dev",
6-
"lint": "eslint src && tsc",
6+
"lint": "eslint src && tsc && prettier src --check",
77
"test": "echo 'No tests yet'",
88
"build": "next build",
99
"start": "next start"
@@ -18,9 +18,10 @@
1818
"@types/lodash": "^4.17.5",
1919
"@types/node": "^20.14.5",
2020
"@types/react": "^18.3.3",
21-
"eslint": "^8.56.0",
22-
"eslint-config-molindo": "^7.0.0",
23-
"eslint-config-next": "^14.2.4",
21+
"eslint": "^9.11.1",
22+
"eslint-config-molindo": "^8.0.0",
23+
"prettier": "^3.3.3",
2424
"typescript": "^5.5.3"
25-
}
25+
},
26+
"prettier": "eslint-config-molindo/.prettierrc.json"
2627
}

examples/example-app-router-migration/src/pages/_app.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type Props = AppProps & {
99
function App({Component, pageProps, router}: Props) {
1010
return (
1111
<NextIntlClientProvider
12-
locale={(router.query?.locale as string) ?? 'en'}
12+
locale={(router.query.locale as string) || 'en'}
1313
messages={pageProps.messages}
1414
timeZone="Europe/Vienna"
1515
>

examples/example-app-router-migration/tsconfig.json

+4-17
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@
22
"extends": "eslint-config-molindo/tsconfig.json",
33
"compilerOptions": {
44
"target": "es5",
5-
"lib": [
6-
"dom",
7-
"dom.iterable",
8-
"esnext"
9-
],
5+
"lib": ["dom", "dom.iterable", "esnext"],
106
"allowJs": true,
117
"skipLibCheck": true,
128
"noEmit": true,
@@ -23,19 +19,10 @@
2319
}
2420
],
2521
"paths": {
26-
"@/*": [
27-
"./src/*"
28-
]
22+
"@/*": ["./src/*"]
2923
},
3024
"strictNullChecks": true
3125
},
32-
"include": [
33-
"next-env.d.ts",
34-
"**/*.ts",
35-
"**/*.tsx",
36-
".next/types/**/*.ts"
37-
],
38-
"exclude": [
39-
"node_modules"
40-
]
26+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
27+
"exclude": ["node_modules"]
4128
}

examples/example-app-router-mixed-routing/.eslintrc.js

-11
This file was deleted.

examples/example-app-router-mixed-routing/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
An example of how to achieve locale prefixes on public routes while reading the locale from user settings on pages for logged-in users.
44

55
**Relevant docs:**
6+
67
1. [Setting up `next-intl` with i18n routing](https://next-intl-docs.vercel.app/docs/getting-started/app-router/with-i18n-routing)
78
2. [Setting up `next-intl` without i18n routing](https://next-intl-docs.vercel.app/docs/getting-started/app-router/without-i18n-routing)
89

910
**Relevant parts in app code:**
11+
1012
1. `src/middleware.ts`: Add a hint if it's a non-public route that we can read in `i18n.ts`.
1113
2. `src/i18n.ts`: Uses the locale from the pathname segment for public routes or returns a locale from the user profile for internal app routes.
1214
3. `src/navigation.public.ts`: Navigation APIs that automatically consider the `[locale]` segment for public routes. For internal app routes, the navigation APIs from Next.js should be used directly (see `PublicNavigation.tsx` vs `AppNavigation.tsx`).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {getPresets} from 'eslint-config-molindo';
2+
3+
export default await getPresets('typescript', 'react', 'tailwind');

examples/example-app-router-mixed-routing/messages/de.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
"Profile": {
2626
"title": "Profil"
2727
}
28-
}
28+
}

examples/example-app-router-mixed-routing/messages/en.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
"Profile": {
2626
"title": "Profile"
2727
}
28-
}
28+
}

examples/example-app-router-mixed-routing/package.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"scripts": {
55
"dev": "next dev",
6-
"lint": "eslint src && tsc",
6+
"lint": "eslint src && tsc && prettier src --check",
77
"test": "playwright test",
88
"build": "next build",
99
"start": "next start"
@@ -20,10 +20,11 @@
2020
"@types/node": "^20.14.5",
2121
"@types/react": "^18.3.3",
2222
"autoprefixer": "^10.4.19",
23-
"eslint": "^8.56.0",
24-
"eslint-config-molindo": "^7.0.0",
25-
"eslint-config-next": "^14.2.4",
23+
"eslint": "^9.11.1",
24+
"eslint-config-molindo": "^8.0.0",
2625
"postcss": "^8.4.38",
26+
"prettier": "^3.3.3",
2727
"typescript": "^5.5.3"
28-
}
28+
},
29+
"prettier": "eslint-config-molindo/.prettierrc.json"
2930
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
plugins: {
33
tailwindcss: {},
4-
autoprefixer: {},
5-
},
6-
}
4+
autoprefixer: {}
5+
}
6+
};

examples/example-app-router-mixed-routing/src/app/(public)/[locale]/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import {Metadata} from 'next';
22
import {NextIntlClientProvider} from 'next-intl';
33
import {getMessages} from 'next-intl/server';
44
import {ReactNode} from 'react';
5+
import Document from '@/components/Document';
56
import PublicNavigation from './PublicNavigation';
67
import PublicNavigationLocaleSwitcher from './PublicNavigationLocaleSwitcher';
7-
import Document from '@/components/Document';
88

99
type Props = {
1010
children: ReactNode;

examples/example-app-router-mixed-routing/src/app/app/AppNavigationLocaleSwitcher.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import {useRouter} from 'next/navigation';
44
import {useLocale} from 'next-intl';
5-
import updateLocale from './updateLocale';
65
import {Locale} from '@/config';
6+
import updateLocale from './updateLocale';
77

88
export default function AppNavigationLocaleSwitcher() {
99
const router = useRouter();

examples/example-app-router-mixed-routing/src/app/app/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import {Metadata} from 'next';
22
import {NextIntlClientProvider} from 'next-intl';
33
import {getLocale, getMessages} from 'next-intl/server';
44
import {ReactNode} from 'react';
5+
import Document from '@/components/Document';
56
import AppNavigation from './AppNavigation';
67
import AppNavigationLocaleSwitcher from './AppNavigationLocaleSwitcher';
78
import Logout from './Logout';
8-
import Document from '@/components/Document';
99

1010
type Props = {
1111
children: ReactNode;

0 commit comments

Comments
 (0)