@i2analyze/eslint-config-i2connect 1.0.2 → 2.0.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -4
  2. package/index.js +0 -6
  3. package/package.json +28 -28
package/CHANGELOG.md CHANGED
@@ -1,20 +1,28 @@
1
1
  # @i2analyze/eslint-config-i2connect
2
2
 
3
+ ## 2.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - BREAKING CHANGE: Set 14.17.0 as the minimum supported node.js version.
8
+ - BREAKING CHANGE: Remove no-unused-vars suppression as we no longer use decorators.
9
+ - BREAKING CHANGE: Update eslint dependency in i2connect-scripts to version 8, see [here](https://eslint.org/docs/8.0.0/user-guide/migrating-to-8.0.0) for the eslint migration guide.
10
+
3
11
  ## 1.0.2
4
12
 
5
13
  ### Patch Changes
6
14
 
7
- - cc9d526: Update copyright information.
8
- - ed28e8e: Update urls to use correct github organization.
15
+ - Update copyright information.
16
+ - Update urls to use correct github organization.
9
17
 
10
18
  ## 1.0.1
11
19
 
12
20
  ### Patch Changes
13
21
 
14
- - 927589d: Update READMEs and homepages for public packages
22
+ - Update READMEs and homepages for public packages
15
23
 
16
24
  ## 1.0.0
17
25
 
18
26
  ### Major Changes
19
27
 
20
- - 79b1db9: Initial release.
28
+ - Initial release.
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,28 +1,28 @@
1
- {
2
- "name": "@i2analyze/eslint-config-i2connect",
3
- "version": "1.0.2",
4
- "license": "MIT",
5
- "publishConfig": {
6
- "access": "public",
7
- "registry": "https://registry.npmjs.org/"
8
- },
9
- "homepage": "https://github.com/i2group/analyze-connect-node-sdk",
10
- "peerDependencies": {
11
- "@typescript-eslint/eslint-plugin": "^4.2.0",
12
- "@typescript-eslint/parser": "^4.0.0",
13
- "eslint-config-prettier": "^8.3.0",
14
- "eslint": "^7.17.0"
15
- },
16
- "scripts": {
17
- "lint": "eslint ."
18
- },
19
- "engines": {
20
- "node": ">= 14"
21
- },
22
- "files": [
23
- "index.js"
24
- ],
25
- "volta": {
26
- "extends": "../../package.json"
27
- }
28
- }
1
+ {
2
+ "name": "@i2analyze/eslint-config-i2connect",
3
+ "version": "2.0.0",
4
+ "license": "MIT",
5
+ "publishConfig": {
6
+ "access": "public",
7
+ "registry": "https://registry.npmjs.org/"
8
+ },
9
+ "homepage": "https://github.com/i2group/analyze-connect-node-sdk",
10
+ "peerDependencies": {
11
+ "@typescript-eslint/eslint-plugin": "^5.21.0",
12
+ "@typescript-eslint/parser": "^5.21.0",
13
+ "eslint-config-prettier": "^8.5.0",
14
+ "eslint": "^8.14.0"
15
+ },
16
+ "scripts": {
17
+ "lint": "eslint ."
18
+ },
19
+ "engines": {
20
+ "node": ">=14.17.0"
21
+ },
22
+ "files": [
23
+ "index.js"
24
+ ],
25
+ "volta": {
26
+ "extends": "../../package.json"
27
+ }
28
+ }