@i2analyze/eslint-config-i2connect 1.0.2 → 2.0.0-next.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @i2analyze/eslint-config-i2connect
2
2
 
3
+ ## 2.0.0-next.0
4
+
5
+ ### Major Changes
6
+
7
+ - d7f4283: BREAKING CHANGE: Remove no-unused-vars suppression as we no longer use decorators.
8
+
3
9
  ## 1.0.2
4
10
 
5
11
  ### Patch Changes
package/index.js CHANGED
@@ -21,11 +21,5 @@ module.exports = {
21
21
  ],
22
22
  rules: {
23
23
  'semi-style': 'error',
24
-
25
- // There's an issue with this rule which means it gives lots of false positives
26
- // when used with, for instance, our 'seeds' decorator, where we'll usually have
27
- // a parameter called 'seeds'. So we have to turn it off. :(
28
- // https://github.com/typescript-eslint/typescript-eslint/issues/2994
29
- '@typescript-eslint/no-unused-vars': 'off',
30
24
  },
31
25
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@i2analyze/eslint-config-i2connect",
3
- "version": "1.0.2",
3
+ "version": "2.0.0-next.0",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public",