-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.js
28 lines (28 loc) · 830 Bytes
/
next.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module.exports = {
extends: ['next/core-web-vitals', './recommended'],
plugins: ['react'],
rules: {
// https://github.com/jsx-eslint/eslint-plugin-react
'react/react-in-jsx-scope': 'error',
'react/function-component-definition': [
'error',
{
namedComponents: 'arrow-function',
unnamedComponents: 'arrow-function',
},
],
'react/button-has-type': 'error',
'react/jsx-no-leaked-render': ['error', { validStrategies: ['ternary'] }],
'react/forward-ref-uses-ref': 'error',
'react/no-unstable-nested-components': ['error', { allowAsProps: true }],
},
overrides: [
{
files: ['./src/pages/**/*', './src/app/**/*'],
rules: {
'canonical/filename-match-exported': 'off',
'import/prefer-default-export': 'off',
},
},
],
}