mirror of
https://github.com/mantinedev/next-app-template.git
synced 2025-11-10 04:22:01 +10:00
18 lines
420 B
JavaScript
18 lines
420 B
JavaScript
module.exports = {
|
|
extends: ['mantine', 'plugin:@next/next/recommended', 'plugin:jest/recommended'],
|
|
plugins: ['testing-library', 'jest'],
|
|
overrides: [
|
|
{
|
|
files: ['**/?(*.)+(spec|test).[jt]s?(x)'],
|
|
extends: ['plugin:testing-library/react'],
|
|
},
|
|
],
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
},
|
|
rules: {
|
|
'react/react-in-jsx-scope': 'off',
|
|
'import/extensions': 'off',
|
|
},
|
|
};
|