@dword-design/eslint-config 3.0.32 → 3.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.
@@ -38,6 +38,11 @@ export default (() => {
38
38
  }]
39
39
  }]
40
40
  }
41
+ }, {
42
+ files: '**/*.vue',
43
+ rules: {
44
+ 'vue/multi-word-component-names': 'off'
45
+ }
41
46
  }],
42
47
  parser: packageName`vue-eslint-parser`,
43
48
  parserOptions: {
@@ -55,6 +60,9 @@ export default (() => {
55
60
  'import/extensions': 'off',
56
61
  'import/no-commonjs': 'error',
57
62
  'import/no-dynamic-require': 'off',
63
+ 'import/no-extraneous-dependencies': ['error', {
64
+ devDependencies: ['**/*.spec.js', 'global-test-hooks.js']
65
+ }],
58
66
  'import/order': 'off',
59
67
  'import/prefer-default-export': 'off',
60
68
  'linebreak-style': ['error', 'unix'],
@@ -120,9 +128,6 @@ export default (() => {
120
128
  'unicorn/template-indent': ['error', {
121
129
  tags: ['endent']
122
130
  }],
123
- 'vue/multi-word-component-names': ['error', {
124
- ignores: ['index']
125
- }],
126
131
  'vue/no-deprecated-functional-template': 'error',
127
132
  'vue/order-in-components': 'off',
128
133
  'vue/require-default-prop': 'off',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/eslint-config",
3
- "version": "3.0.32",
3
+ "version": "3.1.0",
4
4
  "repository": "dword-design/eslint-config",
5
5
  "funding": "https://github.com/sponsors/dword-design",
6
6
  "license": "MIT",