@brickflow/lint 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/shared.js +2 -2
package/package.json
CHANGED
package/shared.js
CHANGED
|
@@ -143,6 +143,7 @@ const baseRules = {
|
|
|
143
143
|
'no-unreachable-loop': 'error',
|
|
144
144
|
'no-unused-private-class-members': 'error',
|
|
145
145
|
'no-unused-vars': 'off',
|
|
146
|
+
'no-useless-assignment': 'off',
|
|
146
147
|
'no-useless-call': 'error',
|
|
147
148
|
'no-useless-computed-key': 'error',
|
|
148
149
|
'no-useless-concat': 'error',
|
|
@@ -169,7 +170,7 @@ const baseRules = {
|
|
|
169
170
|
'promise/no-new-statics': 'error',
|
|
170
171
|
'promise/no-return-in-finally': 'error',
|
|
171
172
|
'promise/no-return-wrap': 'error',
|
|
172
|
-
'promise/param-names': '
|
|
173
|
+
'promise/param-names': 'off',
|
|
173
174
|
'promise/prefer-await-to-then': warn,
|
|
174
175
|
'promise/valid-params': 'error',
|
|
175
176
|
'require-await': warn,
|
|
@@ -177,7 +178,6 @@ const baseRules = {
|
|
|
177
178
|
}
|
|
178
179
|
|
|
179
180
|
const vueRules = {
|
|
180
|
-
'no-useless-assignment': 'off',
|
|
181
181
|
'vue/attribute-hyphenation': [
|
|
182
182
|
'error',
|
|
183
183
|
'never',
|