mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-13 15:09:47 +00:00
23 lines
667 B
JavaScript
23 lines
667 B
JavaScript
import { config } from '@fisch0920/config/eslint'
|
|
|
|
export default [
|
|
...config,
|
|
{
|
|
files: ['**/*.ts', '**/*.tsx'],
|
|
rules: {
|
|
'react/prop-types': 'off',
|
|
'unicorn/no-array-reduce': 'off',
|
|
'unicorn/filename-case': 'off',
|
|
'unicorn/prefer-global-this': 'off',
|
|
'no-process-env': 'off',
|
|
'array-callback-return': 'off',
|
|
'jsx-a11y/click-events-have-key-events': 'off',
|
|
'jsx-a11y/no-static-element-interactions': 'off',
|
|
'jsx-a11y/media-has-caption': 'off',
|
|
'jsx-a11y/interactive-supports-focus': 'off',
|
|
'jsx-a11y/anchor-is-valid': 'off',
|
|
'@typescript-eslint/naming-convention': 'off'
|
|
}
|
|
}
|
|
]
|