create-quasar 1.10.0 → 1.10.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-quasar",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "Scaffolds Quasar Apps, AppExtensions or UI kits",
5
5
  "type": "module",
6
6
  "author": {
@@ -120,6 +120,11 @@ module.exports = {
120
120
  // in plain CommonJS modules, you can't use `import foo = require('foo')` to pass this rule, so it has to be disabled
121
121
  '@typescript-eslint/no-var-requires': 'off',
122
122
 
123
+ '@typescript-eslint/consistent-type-imports': [
124
+ 'error',
125
+ { prefer: 'type-imports' },
126
+ ],
127
+
123
128
  // The core 'no-unused-vars' rules (in the eslint:recommended ruleset)
124
129
  // does not work with type definitions
125
130
  'no-unused-vars': 'off',
@@ -124,6 +124,11 @@ module.exports = {
124
124
  // in plain CommonJS modules, you can't use `import foo = require('foo')` to pass this rule, so it has to be disabled
125
125
  '@typescript-eslint/no-var-requires': 'off',
126
126
 
127
+ '@typescript-eslint/consistent-type-imports': [
128
+ 'error',
129
+ { prefer: 'type-imports' },
130
+ ],
131
+
127
132
  // The core 'no-unused-vars' rules (in the eslint:recommended ruleset)
128
133
  // does not work with type definitions
129
134
  'no-unused-vars': 'off',