1
0
mirror of synced 2024-11-21 21:06:04 +03:00
vue-formulario/.eslintrc.js

67 lines
1.8 KiB
JavaScript
Raw Permalink Normal View History

2018-01-31 01:21:21 +03:00
module.exports = {
2020-10-09 22:58:28 +03:00
root: true,
env: {
browser: true,
},
2020-10-09 22:58:28 +03:00
parserOptions: {
parser: '@typescript-eslint/parser',
2020-10-09 22:58:28 +03:00
},
plugins: [
'@typescript-eslint',
'vue',
],
2020-10-09 22:58:28 +03:00
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: [
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
2020-10-09 22:58:28 +03:00
'plugin:vue/recommended',
],
rules: {
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-explicit-any': 'off', // @TODO
'@typescript-eslint/no-unused-vars': ['error'], // @TODO
2020-10-09 22:58:28 +03:00
'arrow-parens': 0,
'comma-dangle': ['error', 'only-multiline'],
'indent': ['error', 4, { SwitchCase: 1 }],
2020-10-09 22:58:28 +03:00
'max-depth': ['error', 3],
'max-lines-per-function': ['error', 40],
'no-console': ['warn', {allow: ['warn', 'error']}],
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'no-unused-vars': 'off',
2020-10-09 22:58:28 +03:00
'vue/html-closing-bracket-spacing': ['error', {
startTag: 'never',
endTag: 'never',
selfClosingTag: 'always',
}],
'vue/html-indent': ['error', 4, {
attribute: 1,
closeBracket: 0,
alignAttributesVertically: true,
ignores: [],
}],
},
overrides: [{
files: ['*/**/shims-*.d.ts'],
rules: {
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-unused-vars': 'off',
},
}, {
files: ['*.js', '*.tale.vue'],
rules: {
'@typescript-eslint/explicit-function-return-type': 'off',
},
}, {
files: ['*.config.js'],
rules: {
'@typescript-eslint/camelcase': 'off',
}
}],
2018-01-31 01:21:21 +03:00
}