@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 +18 -6
- package/README.md +2 -4
- package/index.js +1 -7
- package/package.json +28 -26
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,26 @@
|
|
|
1
1
|
# @i2analyze/eslint-config-i2connect
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 2.0.0-next.0
|
|
4
4
|
|
|
5
|
-
###
|
|
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
|
-
-
|
|
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
|
|
22
|
+
## 1.0.0
|
|
11
23
|
|
|
12
24
|
### Major Changes
|
|
13
25
|
|
|
14
|
-
-
|
|
26
|
+
- 79b1db9: Initial release.
|
package/README.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @i2analyze/eslint-config-i2connect
|
|
2
2
|
|
|
3
|
-
|
|
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
|
|
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": "
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"eslint-
|
|
12
|
-
"eslint": "^
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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
|
+
}
|