You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
319 B
11 lines
319 B
// ESLint rules specific to writing NextJS Pages. |
|
|
|
module.exports = { |
|
rules: { |
|
// We don't care which syntax is used for NextPage definitions. |
|
'react/function-component-definition': 'off', |
|
|
|
// The default export is used by NextJS when rendering pages. |
|
'import/prefer-default-export': 'error', |
|
}, |
|
};
|
|
|