@dword-design/eslint-config 8.0.3 → 8.1.0
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 +4 -2
- package/package.json +1 -1
package/dist/create/index.js
CHANGED
|
@@ -213,7 +213,8 @@ export default ({
|
|
|
213
213
|
"playwright/no-focused-test": "off",
|
|
214
214
|
"playwright/valid-title": ["error", {
|
|
215
215
|
ignoreTypeOfTestName: true
|
|
216
|
-
}]
|
|
216
|
+
}],
|
|
217
|
+
"unicorn/error-message": "off"
|
|
217
218
|
}
|
|
218
219
|
}, {
|
|
219
220
|
files: ["fixtures/**", "**/*.spec.ts"],
|
|
@@ -231,7 +232,8 @@ export default ({
|
|
|
231
232
|
"vue/no-deprecated-functional-template": "error",
|
|
232
233
|
"vue/prefer-true-attribute-shorthand": "error",
|
|
233
234
|
"vue/prefer-use-template-ref": "error",
|
|
234
|
-
"vue/require-default-prop": "off"
|
|
235
|
+
"vue/require-default-prop": "off",
|
|
236
|
+
"vue/slot-name-casing": "error"
|
|
235
237
|
}
|
|
236
238
|
}]);
|
|
237
239
|
};
|