commit:支持activiti

This commit is contained in:
Jerry
2021-10-20 17:43:53 +08:00
parent b772e75de6
commit 00cc13b87d
861 changed files with 219314 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'@vue/standard'
],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'semi': ['off', 'always'],
'prefer-promise-reject-errors': ['error', { 'allowEmptyReject': true }],
'no-trailing-spaces': ['error', { 'skipBlankLines': true }],
'prefer-const': ['off'],
'quote-props': ['off'],
'object-curly-spacing': ['off'],
'dot-notation': ['off'],
'lines-between-class-members': ['off'],
// 'no-undef': ['off', 'always'],
// 'no-unused-vars': ['off', 'always'],
'no-new-func': ['off', 'always']
},
overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)'
],
env: {
jest: true
}
}
]
}