@i2analyze/eslint-config-i2connect 1.0.1 → 2.0.0-next.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/CHANGELOG.md CHANGED
@@ -1,13 +1,33 @@
1
1
  # @i2analyze/eslint-config-i2connect
2
2
 
3
+ ## 2.0.0-next.1
4
+
5
+ ### Major Changes
6
+
7
+ - BREAKING CHANGE: Set 14.17.0 as the minimum supported node.js version.
8
+ - 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.
9
+
10
+ ## 2.0.0-next.0
11
+
12
+ ### Major Changes
13
+
14
+ - BREAKING CHANGE: Remove no-unused-vars suppression as we no longer use decorators.
15
+
16
+ ## 1.0.2
17
+
18
+ ### Patch Changes
19
+
20
+ - Update copyright information.
21
+ - Update urls to use correct github organization.
22
+
3
23
  ## 1.0.1
4
24
 
5
25
  ### Patch Changes
6
26
 
7
- - 927589d: Update READMEs and homepages for public packages
27
+ - Update READMEs and homepages for public packages
8
28
 
9
29
  ## 1.0.0
10
30
 
11
31
  ### Major Changes
12
32
 
13
- - 79b1db9: Initial release.
33
+ - Initial release.
package/README.md CHANGED
@@ -1,3 +1,3 @@
1
1
  # @i2analyze/eslint-config-i2connect
2
2
 
3
- This package is part of the [i2 Connect SDK](https://github.com/IBM-i2/analyze-connect-node-sdk).
3
+ This package is part of the [i2 Connect SDK](https://github.com/i2group/analyze-connect-node-sdk).
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Copyright 2021- IBM Inc. All rights reserved
2
+ * Copyright 2022- N. Harris Computer Corporation. All rights reserved
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
 
@@ -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,23 +1,23 @@
1
1
  {
2
2
  "name": "@i2analyze/eslint-config-i2connect",
3
- "version": "1.0.1",
3
+ "version": "2.0.0-next.1",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "registry": "https://registry.npmjs.org/"
8
8
  },
9
- "homepage": "https://github.com/IBM-i2/analyze-connect-node-sdk",
9
+ "homepage": "https://github.com/i2group/analyze-connect-node-sdk",
10
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"
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
15
  },
16
16
  "scripts": {
17
17
  "lint": "eslint ."
18
18
  },
19
19
  "engines": {
20
- "node": ">= 14"
20
+ "node": ">=14.17.0"
21
21
  },
22
22
  "files": [
23
23
  "index.js"