@digigov/cli-lint 0.5.23 → 0.5.27
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/.rush/temp/package-deps_build.json +5 -5
- package/.rush/temp/package-deps_lint.json +7 -6
- package/.rush/temp/shrinkwrap-deps.json +514 -88
- package/CHANGELOG.json +47 -0
- package/CHANGELOG.md +27 -1
- package/eslint.common.js +2 -0
- package/package.json +4 -4
- package/.rush/temp/package-deps_rebuild.json +0 -15
- package/yarn-error.log +0 -36
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,53 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/cli-lint",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.5.27",
|
|
6
|
+
"tag": "@digigov/cli-lint_v0.5.27",
|
|
7
|
+
"date": "Tue, 08 Feb 2022 15:21:11 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "add react-hooks/exhaustive-deps in eslint rules"
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"version": "0.5.26",
|
|
18
|
+
"tag": "@digigov/cli-lint_v0.5.26",
|
|
19
|
+
"date": "Wed, 02 Feb 2022 15:44:29 GMT",
|
|
20
|
+
"comments": {
|
|
21
|
+
"patch": [
|
|
22
|
+
{
|
|
23
|
+
"comment": "fix package.json inconsistencies by running cli-lab verify-and-update-local-package-versions"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"dependency": [
|
|
27
|
+
{
|
|
28
|
+
"comment": "Updating dependency \"@digigov/cli-build\" from `0.6.0` to `0.6.1`"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"version": "0.5.25",
|
|
35
|
+
"tag": "@digigov/cli-lint_v0.5.25",
|
|
36
|
+
"date": "Wed, 22 Sep 2021 10:15:42 GMT",
|
|
37
|
+
"comments": {
|
|
38
|
+
"patch": [
|
|
39
|
+
{
|
|
40
|
+
"comment": "Add browser env to eslint.common config so that usage of global variables like `window` won't produce eslint errors"
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"version": "0.5.24",
|
|
47
|
+
"tag": "@digigov/cli-lint_v0.5.24",
|
|
48
|
+
"date": "Thu, 12 Aug 2021 08:56:35 GMT",
|
|
49
|
+
"comments": {}
|
|
50
|
+
},
|
|
4
51
|
{
|
|
5
52
|
"version": "0.5.23",
|
|
6
53
|
"tag": "@digigov/cli-lint_v0.5.23",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,32 @@
|
|
|
1
1
|
# Change Log - @digigov/cli-lint
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 08 Feb 2022 15:21:11 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.5.27
|
|
6
|
+
Tue, 08 Feb 2022 15:21:11 GMT
|
|
7
|
+
|
|
8
|
+
### Patches
|
|
9
|
+
|
|
10
|
+
- add react-hooks/exhaustive-deps in eslint rules
|
|
11
|
+
|
|
12
|
+
## 0.5.26
|
|
13
|
+
Wed, 02 Feb 2022 15:44:29 GMT
|
|
14
|
+
|
|
15
|
+
### Patches
|
|
16
|
+
|
|
17
|
+
- fix package.json inconsistencies by running cli-lab verify-and-update-local-package-versions
|
|
18
|
+
|
|
19
|
+
## 0.5.25
|
|
20
|
+
Wed, 22 Sep 2021 10:15:42 GMT
|
|
21
|
+
|
|
22
|
+
### Patches
|
|
23
|
+
|
|
24
|
+
- Add browser env to eslint.common config so that usage of global variables like `window` won't produce eslint errors
|
|
25
|
+
|
|
26
|
+
## 0.5.24
|
|
27
|
+
Thu, 12 Aug 2021 08:56:35 GMT
|
|
28
|
+
|
|
29
|
+
_Version update only_
|
|
4
30
|
|
|
5
31
|
## 0.5.23
|
|
6
32
|
Thu, 12 Aug 2021 06:18:14 GMT
|
package/eslint.common.js
CHANGED
|
@@ -46,6 +46,7 @@ function makeEslintConfig(dir) {
|
|
|
46
46
|
const config = {
|
|
47
47
|
env: {
|
|
48
48
|
node: true,
|
|
49
|
+
browser: true,
|
|
49
50
|
},
|
|
50
51
|
extends: extendsRest,
|
|
51
52
|
plugins,
|
|
@@ -81,6 +82,7 @@ function makeEslintConfig(dir) {
|
|
|
81
82
|
'react/prop-types': 'off',
|
|
82
83
|
'@typescript-eslint/no-empty-interface': 'off',
|
|
83
84
|
'@typescript-eslint/no-var-requires': 0,
|
|
85
|
+
'react-hooks/exhaustive-deps': 'off',
|
|
84
86
|
},
|
|
85
87
|
});
|
|
86
88
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/cli-lint",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.27",
|
|
4
4
|
"description": "Lint plugin for Digigov CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "GRNET Devs <devs@lists.grnet.gr>",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"eslint-import-resolver-babel-module": "5.1.2",
|
|
15
15
|
"eslint-plugin-css-modules": "2.11.0",
|
|
16
16
|
"eslint-plugin-cypress": "2.8.1",
|
|
17
|
-
"eslint-plugin-digigov": "
|
|
17
|
+
"eslint-plugin-digigov": "0.1.3",
|
|
18
18
|
"eslint-plugin-enzyme": "0.2.0",
|
|
19
19
|
"eslint-plugin-import": "2.20.1",
|
|
20
20
|
"eslint-plugin-jest": "24.1.3",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"@rushstack/eslint-patch": "~1.0.6"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@digigov/cli": "
|
|
33
|
-
"@digigov/cli-build": "
|
|
32
|
+
"@digigov/cli": "0.5.25",
|
|
33
|
+
"@digigov/cli-build": "0.6.1",
|
|
34
34
|
"prettier": "2.0.2",
|
|
35
35
|
"eslint": "~7.24.0"
|
|
36
36
|
},
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"files": {
|
|
3
|
-
"tooling/cli-lint/.eslintrc.js": "9021f38d6d5d1d3a2eb5e20507d799c0c1d8f528",
|
|
4
|
-
"tooling/cli-lint/CHANGELOG.json": "1415e94ecaf2627f7b0945ae2456d702ec3a8730",
|
|
5
|
-
"tooling/cli-lint/CHANGELOG.md": "df12f1fc45c48832242df226857f160416706a27",
|
|
6
|
-
"tooling/cli-lint/eslint.common.js": "0b0e43317bea6cedb2b7f9da0ba31bb54d61dfae",
|
|
7
|
-
"tooling/cli-lint/eslintrc.js": "3cb496db7b35d18d27fec953e7a6b637789986bc",
|
|
8
|
-
"tooling/cli-lint/index.js": "6848e0fd6e08b80614542a3de75e1d5ab9305824",
|
|
9
|
-
"tooling/cli-lint/package.json": "99cbeafe8f2ce8440c19211ec37a84ee17d8880e",
|
|
10
|
-
"tooling/cli-lint/prettier.config.js": "7796b248642ee21b308769f8fcce91f7244d7d82",
|
|
11
|
-
"tooling/cli-lint/prettierrc.js": "d9719421e650d19e0a9d359b9a4f72861ac7f792",
|
|
12
|
-
"tooling/cli-lint/.rush/temp/shrinkwrap-deps.json": "8bfb40a8fa94d89a278511f33751379a400f9c0d"
|
|
13
|
-
},
|
|
14
|
-
"arguments": ""
|
|
15
|
-
}
|
package/yarn-error.log
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
Arguments:
|
|
2
|
-
/Users/tsironis/.nvm/versions/node/v12.20.0/bin/node /Users/tsironis/.nvm/versions/node/v12.20.0/bin/yarn init .
|
|
3
|
-
|
|
4
|
-
PATH:
|
|
5
|
-
/usr/local/opt/ncurses/bin:/Users/tsironis/.nvm/versions/node/v12.20.0/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/opt/ncurses/bin:/Users/tsironis/.nvm/versions/node/v12.20.0/bin:/usr/local/opt/fzf/bin
|
|
6
|
-
|
|
7
|
-
Yarn version:
|
|
8
|
-
1.22.10
|
|
9
|
-
|
|
10
|
-
Node version:
|
|
11
|
-
12.20.0
|
|
12
|
-
|
|
13
|
-
Platform:
|
|
14
|
-
darwin x64
|
|
15
|
-
|
|
16
|
-
Trace:
|
|
17
|
-
Error: canceled
|
|
18
|
-
at Interface.<anonymous> (/Users/tsironis/.nvm/versions/node/v12.20.0/lib/node_modules/yarn/lib/cli.js:136216:13)
|
|
19
|
-
at Interface.emit (events.js:314:20)
|
|
20
|
-
at Interface._ttyWrite (readline.js:868:16)
|
|
21
|
-
at ReadStream.onkeypress (readline.js:205:10)
|
|
22
|
-
at ReadStream.emit (events.js:314:20)
|
|
23
|
-
at emitKeys (internal/readline/utils.js:335:14)
|
|
24
|
-
at emitKeys.next (<anonymous>)
|
|
25
|
-
at ReadStream.onData (readline.js:1137:36)
|
|
26
|
-
at ReadStream.emit (events.js:314:20)
|
|
27
|
-
at addChunk (_stream_readable.js:297:12)
|
|
28
|
-
|
|
29
|
-
npm manifest:
|
|
30
|
-
No manifest
|
|
31
|
-
|
|
32
|
-
yarn manifest:
|
|
33
|
-
No manifest
|
|
34
|
-
|
|
35
|
-
Lockfile:
|
|
36
|
-
No lockfile
|