代码拉取完成,页面将自动刷新
module.exports={
root: true,
env:{
browser: true,
commonjs: true,
node: true,
es6: true,
jest: true,
},
parserOptions:{
ecmaVersion:6,
sourceType:'module',
ecmaFeatures:{
jsx: true,
generators: true,
experimentalObjectRestSpread: true,
}
},
globals:{
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
document: true,
navigator: true,
window:true,
node:true
},
settings:{
'import/ignore': [
'node_modules',
'doc',
'dist'
],
react:{
pragma:'React',
version:'detect',
},
},
extends: 'eslint:recommended',
// extends: ['plugin:prettier/recommended'],
parser: 'babel-eslint',
rules: {
'strict': [2, 'never'],
'quotes': [2, 'single',{'allowTemplateLiterals':true}],
'eqeqeq': [1, 'smart'],
'curly': [1, 'all'],
// 'indent':[2, 2],
'indent': ['error',2,{'ignoredNodes':['TemplateLiteral']}],
'jsx-quotes': [2,'prefer-double'],
'semi':[2,'always'],
'no-extra-semi':2,
'no-mixed-spaces-and-tabs': [2, 'smart-tabs'],
'comma-dangle':[2,'always-multiline'],
'no-console':1,
'no-debugger':1,
'no-extra-bind':1,
'no-lone-blocks':1,
'no-var':2,
'no-unused-expressions':[1,{ 'allowShortCircuit': true, 'allowTernary': true }],
'no-unused-vars':[1,{ 'args': 'none', 'ignoreRestSiblings': true }],
'no-undef':2,
'no-restricted-globals': [2, 'event'],
'react/jsx-uses-react': 2,
'react/jsx-uses-vars': 2,
'react/jsx-no-undef': 2,
'react/jsx-pascal-case': 1,
'react/react-in-jsx-scope': 2,
'react/require-render-return': 2,
'react/self-closing-comp':2,
'react-hooks/rules-of-hooks': 2,
'react-hooks/exhaustive-deps': 1,
// 'prettier/prettier': 'error',
},
plugins: [
'babel',
'react',
'react-hooks',
]
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。