eslint-config-tencent
Version:
ESLint Config for Tencent
18 lines (17 loc) • 408 B
JavaScript
// https://git.code.oa.com/standards/javascript/issues/25
module.exports = {
extends: ['./base'],
rules: {
// 豁免规则
camelCase: 'off',
eqeqeq: 'off',
'func-type': 'off',
'max-len': 'off',
'no-param-reassign': 'off',
'no-underscore-dangle': 'off',
'no-var': 'off',
'prefer-const': 'off',
'prefer-template': 'off',
'template-curly-spacing': 'off',
},
};