@dword-design/eslint-config 9.0.3 → 9.0.5
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/dist/create/index.js +2 -1
- package/package.json +1 -1
package/dist/create/index.js
CHANGED
|
@@ -225,6 +225,7 @@ export default ({
|
|
|
225
225
|
}, {
|
|
226
226
|
files: ["fixtures/**", "**/*.spec.ts"],
|
|
227
227
|
rules: {
|
|
228
|
+
"@typescript-eslint/no-empty-object-type": "off",
|
|
228
229
|
"no-empty-pattern": "off"
|
|
229
230
|
}
|
|
230
231
|
}, {
|
|
@@ -234,7 +235,7 @@ export default ({
|
|
|
234
235
|
alphabetical: true
|
|
235
236
|
}],
|
|
236
237
|
"vue/component-api-style": ["error", ["script-setup"]],
|
|
237
|
-
"vue/define-emits-declaration": "error",
|
|
238
|
+
"vue/define-emits-declaration": ["error", "type-literal"],
|
|
238
239
|
"vue/multi-word-component-names": "off",
|
|
239
240
|
"vue/no-deprecated-functional-template": "error",
|
|
240
241
|
"vue/prefer-true-attribute-shorthand": "error",
|