@dword-design/eslint-config 6.1.0 → 6.1.2

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.
@@ -101,7 +101,7 @@ export default () => {
101
101
  'import/no-commonjs': 'error',
102
102
  'import/no-dynamic-require': 'off',
103
103
  'import/no-extraneous-dependencies': ['error', {
104
- devDependencies: ['base.config.js', '**/*.spec.js', ...(baseConfig.testRunner === 'playwright' ? ['fixtures/**', 'global-setup.js', 'global-teardown.js', 'playwright.config.js'] : ['global-test-hooks.js'])]
104
+ devDependencies: ['base.config.js', '**/*.spec.js', '**/*.spec.ts', ...(baseConfig.testRunner === 'playwright' ? ['fixtures/**', 'global-setup.js', 'global-teardown.js', 'playwright.config.js'] : ['global-test-hooks.js'])]
105
105
  }],
106
106
  'import/no-named-as-default': 'off',
107
107
  'import/order': 'off',
@@ -251,5 +251,13 @@ 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-unresolved': 'off'
261
+ }
254
262
  }]);
255
263
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/eslint-config",
3
- "version": "6.1.0",
3
+ "version": "6.1.2",
4
4
  "repository": "dword-design/eslint-config",
5
5
  "funding": "https://github.com/sponsors/dword-design",
6
6
  "license": "MIT",