Files
Homarr/.eslintrc.js

23 lines
517 B
JavaScript
Raw Normal View History

2022-04-24 22:36:47 +02:00
module.exports = {
extends: [
'mantine',
'plugin:@next/next/recommended',
'plugin:jest/recommended',
'plugin:storybook/recommended',
2022-04-30 21:33:08 +02:00
'plugin:@typescript-eslint/eslint-recommended',
2022-04-24 22:36:47 +02:00
],
2022-04-30 21:33:08 +02:00
plugins: ['testing-library', 'jest', 'react-hooks', 'react'],
2022-04-24 22:36:47 +02:00
overrides: [
{
files: ['**/?(*.)+(spec|test).[jt]s?(x)'],
extends: ['plugin:testing-library/react'],
},
],
parserOptions: {
project: './tsconfig.json',
},
rules: {
'react/react-in-jsx-scope': 'off',
},
};