You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
55 lines
1.4 KiB
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
},
|
|
extends: ['plugin:vue/essential', 'airbnb-base', 'plugin:prettier/recommended'],
|
|
parserOptions: {
|
|
ecmaVersion: 12,
|
|
sourceType: 'module',
|
|
},
|
|
plugins: ['vue'],
|
|
rules: {
|
|
'import/no-unresolved': 0,
|
|
'import/extensions': 0,
|
|
'no-plusplus': 0,
|
|
'no-use-before-define': [
|
|
'error',
|
|
{
|
|
functions: false,
|
|
classes: true,
|
|
variables: true,
|
|
},
|
|
],
|
|
'consistent-return': 0,
|
|
'vue/html-self-closing': 'off',
|
|
'no-unused-expressions': 'off',
|
|
'vue/no-mutating-props': 'off',
|
|
'vue/no-multiple-template-root': 'off',
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-param-reassign': 'off',
|
|
'max-len': [
|
|
'error',
|
|
{
|
|
code: 140,
|
|
tabWidth: 2,
|
|
},
|
|
],
|
|
'object-curly-newline': ['error', { multiline: true }],
|
|
'arrow-parens': ['error', 'as-needed'],
|
|
'linebreak-style': 'off',
|
|
'vue/attributes-order': 'off',
|
|
'vue/singleline-html-element-content-newline': 'off',
|
|
'vue/max-attributes-per-line': 'off',
|
|
'vue/multiline-html-element-content-newline': 'off',
|
|
'vue/html-indent': 'off',
|
|
'vue/html-closing-bracket-newline': [
|
|
'error',
|
|
{
|
|
singleline: 'never',
|
|
multiline: 'always',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|