We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f28814 commit ba1f7c7Copy full SHA for ba1f7c7
.eslintrc.js
@@ -1,13 +1,27 @@
1
module.exports = {
2
root: true,
3
+
4
extends: [
- 'plugin:vue-libs/recommended'
5
+ 'plugin:vue-libs/recommended',
6
+ 'plugin:vue/recommended'
7
],
8
9
rules: {
10
indent: ['error', 2, { MemberExpression: 'off' }],
11
12
'no-undef': ['error'],
- 'operator-linebreak': ['error', 'before']
13
14
+ 'operator-linebreak': ['error', 'before'],
15
16
+ 'vue/match-component-file-name': [
17
+ 'error',
18
+ {
19
+ extensions: ['js', 'vue'],
20
+ shouldMatchCase: false
21
+ }
22
+ ]
23
},
24
25
overrides: [
26
{
27
files: ['*.ts'],
0 commit comments