Ivan Li
de1da22508
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 10m33s
Co-authored-by: Ivan Li <ivanli2048@gmail.com> Reviewed-on: #3
43 lines
1.0 KiB
JavaScript
43 lines
1.0 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
env: {
|
|
browser: true,
|
|
amd: true,
|
|
node: true,
|
|
es6: true,
|
|
},
|
|
plugins: ['@typescript-eslint'],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:jsx-a11y/recommended',
|
|
'plugin:prettier/recommended',
|
|
'next',
|
|
'next/core-web-vitals',
|
|
],
|
|
parserOptions: {
|
|
project: true,
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
rules: {
|
|
'prettier/prettier': 'error',
|
|
'react/react-in-jsx-scope': 'off',
|
|
'jsx-a11y/anchor-is-valid': [
|
|
'error',
|
|
{
|
|
components: ['Link'],
|
|
specialLink: ['hrefLeft', 'hrefRight'],
|
|
aspects: ['invalidHref', 'preferButton'],
|
|
},
|
|
],
|
|
'react/prop-types': 0,
|
|
'@typescript-eslint/no-unused-vars': 0,
|
|
'react/no-unescaped-entities': 0,
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
'@typescript-eslint/no-var-requires': 'off',
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
},
|
|
}
|