mirror of
https://github.com/ikun0014/lx-music-mobile.git
synced 2025-05-23 22:37:41 +08:00
85 lines
2.3 KiB
JavaScript
85 lines
2.3 KiB
JavaScript
const baseRule = {
|
|
'no-new': 'off',
|
|
camelcase: 'off',
|
|
'no-return-assign': 'off',
|
|
'space-before-function-paren': ['error', 'never'],
|
|
'no-var': 'error',
|
|
'no-fallthrough': 'off',
|
|
eqeqeq: 'off',
|
|
'require-atomic-updates': ['error', { allowProperties: true }],
|
|
'no-multiple-empty-lines': [1, { max: 2 }],
|
|
'comma-dangle': [2, 'always-multiline'],
|
|
'standard/no-callback-literal': 'off',
|
|
'prefer-const': 'off',
|
|
'no-labels': 'off',
|
|
'node/no-callback-literal': 'off',
|
|
'multiline-ternary': 'off',
|
|
'react/display-name': 'off',
|
|
'react/prop-types': 'off',
|
|
}
|
|
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'standard',
|
|
'plugin:react/recommended',
|
|
'plugin:react-hooks/recommended',
|
|
'plugin:react/jsx-runtime',
|
|
],
|
|
plugins: [
|
|
'react',
|
|
],
|
|
rules: baseRule,
|
|
parser: '@babel/eslint-parser',
|
|
overrides: [
|
|
{
|
|
files: ['*.ts', '*.tsx'],
|
|
extends: ['standard-with-typescript'],
|
|
rules: {
|
|
...baseRule,
|
|
'@typescript-eslint/strict-boolean-expressions': 'off',
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
'@typescript-eslint/space-before-function-paren': 'off',
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
'@typescript-eslint/restrict-template-expressions': [
|
|
1,
|
|
{
|
|
allowBoolean: true,
|
|
},
|
|
],
|
|
'@typescript-eslint/no-misused-promises': [
|
|
'error',
|
|
{
|
|
checksVoidReturn: {
|
|
arguments: false,
|
|
attributes: false,
|
|
},
|
|
},
|
|
],
|
|
'@typescript-eslint/naming-convention': 'off',
|
|
'@typescript-eslint/return-await': 'off',
|
|
'@typescript-eslint/comma-dangle': 'off',
|
|
'@typescript-eslint/no-dynamic-delete': 'off',
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
'@typescript-eslint/ban-types': 'off',
|
|
},
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
},
|
|
},
|
|
],
|
|
settings: {
|
|
react: {
|
|
version: 'detect', // React version. "detect" automatically picks the version you have installed.
|
|
// You can also use `16.0`, `16.3`, etc, if you want to override the detected value.
|
|
// It will default to "latest" and warn if missing, and to "detect" in the future
|
|
},
|
|
},
|
|
ignorePatterns: [
|
|
'node_modules',
|
|
'*.min.js',
|
|
'test.js',
|
|
'*Test.ts',
|
|
],
|
|
}
|