@tpluscode/eslint-config 0.4.7 → 0.4.9

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/index.js +2 -1
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 1a22cee: consistent-type-imports: auto-fix only work when level is error?
8
+
9
+ ## 0.4.8
10
+
11
+ ### Patch Changes
12
+
13
+ - b3aa9ee: Enforce type-only imports where necessary
14
+
3
15
  ## 0.4.7
4
16
 
5
17
  ### Patch Changes
package/index.js CHANGED
@@ -25,7 +25,8 @@ module.exports = {
25
25
  '@typescript-eslint/no-dupe-class-members': ['error'],
26
26
  'no-redeclare': 'off',
27
27
  '@typescript-eslint/no-redeclare': 'warn',
28
- '@typescript-eslint/no-unused-vars': 'off'
28
+ '@typescript-eslint/no-unused-vars': 'off',
29
+ '@typescript-eslint/consistent-type-imports': 'error'
29
30
  },
30
31
  settings: {
31
32
  'import/parsers': {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tpluscode/eslint-config",
3
- "version": "0.4.7",
3
+ "version": "0.4.9",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {