@dword-design/eslint-config 9.0.2 → 9.0.4
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 +3 -1
- package/package.json +1 -1
package/dist/create/index.js
CHANGED
|
@@ -206,8 +206,10 @@ export default ({
|
|
|
206
206
|
extensionAlias: {
|
|
207
207
|
".js": [".js"]
|
|
208
208
|
},
|
|
209
|
+
noWarnOnMultipleProjects: true,
|
|
209
210
|
// Disable auto-guessing of .ts when .js is imported
|
|
210
211
|
project: projectPaths
|
|
212
|
+
// TODO: Remove this when we don't need to pass projects anymore
|
|
211
213
|
})]
|
|
212
214
|
}
|
|
213
215
|
}, {
|
|
@@ -232,7 +234,7 @@ export default ({
|
|
|
232
234
|
alphabetical: true
|
|
233
235
|
}],
|
|
234
236
|
"vue/component-api-style": ["error", ["script-setup"]],
|
|
235
|
-
"vue/define-emits-declaration": "error",
|
|
237
|
+
"vue/define-emits-declaration": ["error", "type-literal"],
|
|
236
238
|
"vue/multi-word-component-names": "off",
|
|
237
239
|
"vue/no-deprecated-functional-template": "error",
|
|
238
240
|
"vue/prefer-true-attribute-shorthand": "error",
|