@i2analyze/eslint-config-i2connect 1.0.0-next.1 → 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,14 +1,26 @@
1
1
  # @i2analyze/eslint-config-i2connect
2
2
 
3
- ## 1.0.0-next.1
3
+ ## 2.0.0-next.0
4
4
 
5
- ### Minor Changes
5
+ ### Major Changes
6
+
7
+ - d7f4283: BREAKING CHANGE: Remove no-unused-vars suppression as we no longer use decorators.
8
+
9
+ ## 1.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - cc9d526: Update copyright information.
14
+ - ed28e8e: Update urls to use correct github organization.
15
+
16
+ ## 1.0.1
17
+
18
+ ### Patch Changes
6
19
 
7
- - ef936e9: Disabled no-unused-vars rule due to
8
- https://github.com/typescript-eslint/typescript-eslint/issues/2994.
20
+ - 927589d: Update READMEs and homepages for public packages
9
21
 
10
- ## 1.0.0-next.0
22
+ ## 1.0.0
11
23
 
12
24
  ### Major Changes
13
25
 
14
- - 86b71f1: Change set for initial release
26
+ - 79b1db9: Initial release.
package/README.md CHANGED
@@ -1,5 +1,3 @@
1
- # This package is in development and not intended for public consumption
1
+ # @i2analyze/eslint-config-i2connect
2
2
 
3
- We are actively working on creating a node.js SDK for developing i2 connect connectors. The code is currently closed source but will be open sourced in the future.
4
-
5
- If you have any queries regarding this package please contact [Gary Wise](mailto:wisegary@uk.ibm.com) or [Jonny Cornwell](mailto:jonny.cornwell@uk.ibm.com).
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,26 +1,28 @@
1
- {
2
- "name": "@i2analyze/eslint-config-i2connect",
3
- "version": "1.0.0-next.1",
4
- "license": "MIT",
5
- "publishConfig": {
6
- "access": "public"
7
- },
8
- "peerDependencies": {
9
- "@typescript-eslint/eslint-plugin": "^4.2.0",
10
- "@typescript-eslint/parser": "^4.0.0",
11
- "eslint-config-prettier": "^8.3.0",
12
- "eslint": "^7.17.0"
13
- },
14
- "scripts": {
15
- "lint": "eslint ."
16
- },
17
- "engines": {
18
- "node": ">= 14"
19
- },
20
- "files": [
21
- "index.js"
22
- ],
23
- "volta": {
24
- "extends": "../../package.json"
25
- }
26
- }
1
+ {
2
+ "name": "@i2analyze/eslint-config-i2connect",
3
+ "version": "2.0.0-next.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": "^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
+ }