You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
const config = require('@lobehub/lint').eslint;
|
|
|
|
config.extends.push('plugin:@next/next/recommended');
|
|
|
|
config.rules['unicorn/no-negated-condition'] = 0;
|
|
config.rules['unicorn/prefer-type-error'] = 0;
|
|
config.rules['unicorn/prefer-logical-operator-over-ternary'] = 0;
|
|
config.rules['unicorn/no-null'] = 0;
|
|
config.rules['unicorn/no-typeof-undefined'] = 0;
|
|
config.rules['unicorn/explicit-length-check'] = 0;
|
|
config.rules['unicorn/prefer-code-point'] = 0;
|
|
config.rules['no-extra-boolean-cast'] = 0;
|
|
config.rules['unicorn/no-useless-undefined'] = 0;
|
|
config.rules['react/no-unknown-property'] = 0;
|
|
config.rules['unicorn/prefer-ternary'] = 0;
|
|
config.rules['unicorn/prefer-spread'] = 0;
|
|
config.rules['unicorn/catch-error-name'] = 0;
|
|
config.rules['unicorn/no-array-for-each'] = 0;
|
|
config.rules['unicorn/prefer-number-properties'] = 0;
|
|
|
|
config.overrides = [
|
|
{
|
|
extends: ['plugin:mdx/recommended'],
|
|
files: ['*.mdx'],
|
|
rules: {
|
|
'@typescript-eslint/no-unused-vars': 1,
|
|
'no-undef': 0,
|
|
'react/jsx-no-undef': 0,
|
|
'react/no-unescaped-entities': 0,
|
|
},
|
|
settings: {
|
|
'mdx/code-blocks': false,
|
|
},
|
|
},
|
|
];
|
|
|
|
module.exports = config;
|