mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-13 08:55:48 +01:00
23 lines
517 B
JavaScript
23 lines
517 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'mantine',
|
|
'plugin:@next/next/recommended',
|
|
'plugin:jest/recommended',
|
|
'plugin:storybook/recommended',
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
],
|
|
plugins: ['testing-library', 'jest', 'react-hooks', 'react'],
|
|
overrides: [
|
|
{
|
|
files: ['**/?(*.)+(spec|test).[jt]s?(x)'],
|
|
extends: ['plugin:testing-library/react'],
|
|
},
|
|
],
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
},
|
|
rules: {
|
|
'react/react-in-jsx-scope': 'off',
|
|
},
|
|
};
|