重命名 orange-demo-activiti 为 images

This commit is contained in:
orange-form
2024-07-05 14:37:07 +00:00
committed by Gitee
parent e01c15c0fd
commit 445e3df4c3
894 changed files with 0 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
}
}
]
}