File tree Expand file tree Collapse file tree 4 files changed +1860
-1412
lines changed Expand file tree Collapse file tree 4 files changed +1860
-1412
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ const rules = {
2
2
'no-bitwise' : 'off' ,
3
3
'import/no-extraneous-dependencies' : 'off' ,
4
4
'no-nested-ternary' : 'off' ,
5
+ 'no-constructor-return' : 'off' ,
6
+ 'default-param-last' : 'off' ,
5
7
'no-param-reassign' : [
6
8
'error' ,
7
9
{
@@ -128,6 +130,7 @@ module.exports = {
128
130
'vue/custom-event-name-casing' : [ 'off' ] ,
129
131
'prefer-destructuring' : [ 'off' ] ,
130
132
'no-restricted-globals' : [ 'off' ] ,
133
+ 'vue/multi-word-component-names' : 'off' ,
131
134
} ,
132
135
} ,
133
136
{
@@ -138,6 +141,7 @@ module.exports = {
138
141
'import/no-extraneous-dependencies' : [ 'off' ] ,
139
142
'import/extensions' : [ 'off' ] ,
140
143
'no-restricted-globals' : [ 'off' ] ,
144
+ 'vue/multi-word-component-names' : 'off' ,
141
145
} ,
142
146
} ,
143
147
// SVELTE KITCHEN_SINK
You can’t perform that action at this time.
0 commit comments