18 lines
385 B
JavaScript
18 lines
385 B
JavaScript
import awesome from '@vchikalkin/eslint-config-awesome';
|
|
import tailwind from 'eslint-plugin-tailwindcss';
|
|
|
|
/**
|
|
* @type {import("eslint").Linter.Config}
|
|
*/
|
|
export default [
|
|
...tailwind.configs['flat/recommended'],
|
|
...awesome['react-typescript'],
|
|
{
|
|
ignores: ['**/.next/**'],
|
|
rules: {
|
|
'id-length': 'off',
|
|
'react/forbid-component-props': 'off',
|
|
},
|
|
},
|
|
];
|