@tpluscode/eslint-config 0.3.1 → 0.3.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - d57dc1e: Standard `no-redeclare` would show incorrect errors about function overloads
8
+
9
+ ## 0.3.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 4e98a01: Disable default `no-dupe-class-members`
14
+
3
15
  ## 0.3.1
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -13,6 +13,8 @@ npm i --save-dev \
13
13
  eslint-config-standard \
14
14
  eslint-plugin-import \
15
15
  eslint-plugin-node \
16
+ eslint-plugin-promise \
17
+ eslint-plugin-n \
16
18
  standard
17
19
  ```
18
20
 
package/index.js CHANGED
@@ -51,7 +51,11 @@ module.exports = {
51
51
  ],
52
52
  optionalDependencies: false
53
53
  }
54
- ]
54
+ ],
55
+ 'no-dupe-class-members': 'off',
56
+ '@typescript-eslint/no-dupe-class-members': ['error'],
57
+ 'no-redeclare': 'off',
58
+ '@typescript-eslint/no-redeclare': 'warn'
55
59
  },
56
60
  settings: {
57
61
  'import/core-modules': ['rdf-js'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tpluscode/eslint-config",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {