@dword-design/eslint-config 6.1.1 → 6.1.3
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 +9 -0
- package/package.json +1 -1
package/dist/create/index.js
CHANGED
|
@@ -251,5 +251,14 @@ export default () => {
|
|
|
251
251
|
rules: {
|
|
252
252
|
'vue/multi-word-component-names': 'off'
|
|
253
253
|
}
|
|
254
|
+
}, {
|
|
255
|
+
// TODO: Remove this after TypeScript migration
|
|
256
|
+
files: ['**/*.ts'],
|
|
257
|
+
rules: {
|
|
258
|
+
'@typescript-eslint/no-explicit-any': 'off',
|
|
259
|
+
'import/extensions': 'off',
|
|
260
|
+
'import/no-extraneous-dependencies': 'off',
|
|
261
|
+
'import/no-unresolved': 'off'
|
|
262
|
+
}
|
|
254
263
|
}]);
|
|
255
264
|
};
|