Skip to content

Commit

Permalink
[*] [Dev Deps] update eslint, lerna
Browse files Browse the repository at this point in the history
 - eslint TODO due to eslint/eslint#13166 (comment), breaking change in eslint v7.3
  • Loading branch information
ljharb committed Aug 2, 2020
1 parent ff1b29b commit 5e15f56
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Expand Up @@ -12,7 +12,8 @@
},

"rules": {
"comma-dangle": [2, "always-multiline", {
// TODO: fix when https://github.com/eslint/eslint/pull/13166#issuecomment-667627590 is fixed
"comma-dangle": [2, /*"always-multiline",*/ {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -33,8 +33,8 @@
"devDependencies": {
"@ljharb/eslint-config": "^17.1.0",
"aud": "^1.1.2",
"eslint": "^7.1.0",
"lerna": "^3.22.0",
"eslint": "^7.6.0",
"lerna": "^3.22.1",
"tape": "^5.0.1"
}
}
3 changes: 2 additions & 1 deletion packages/list-exports/.eslintrc
Expand Up @@ -12,7 +12,8 @@
},

"rules": {
"comma-dangle": [2, "always-multiline", {
// TODO: fix when https://github.com/eslint/eslint/pull/13166#issuecomment-667627590 is fixed
"comma-dangle": [2, /*"always-multiline",*/ {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
Expand Down
2 changes: 1 addition & 1 deletion packages/list-exports/package.json
Expand Up @@ -58,7 +58,7 @@
"devDependencies": {
"@ljharb/eslint-config": "^17.1.0",
"aud": "^1.1.2",
"eslint": "^7.1.0",
"eslint": "^7.6.0",
"in-publish": "^2.0.1",
"safe-publish-latest": "^1.1.4"
},
Expand Down
3 changes: 2 additions & 1 deletion packages/ls-exports/.eslintrc
Expand Up @@ -12,7 +12,8 @@
},

"rules": {
"comma-dangle": [2, "always-multiline", {
// TODO: fix when https://github.com/eslint/eslint/pull/13166#issuecomment-667627590 is fixed
"comma-dangle": [2, /*"always-multiline",*/ {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
Expand Down
2 changes: 1 addition & 1 deletion packages/ls-exports/package.json
Expand Up @@ -56,7 +56,7 @@
"devDependencies": {
"@ljharb/eslint-config": "^17.1.0",
"aud": "^1.1.2",
"eslint": "^7.1.0",
"eslint": "^7.6.0",
"in-publish": "^2.0.1",
"safe-publish-latest": "^1.1.4"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/package.json
Expand Up @@ -8,7 +8,7 @@
},
"devDependencies": {
"@ljharb/eslint-config": "^17.1.0",
"eslint": "^7.1.0",
"eslint": "^7.6.0",
"json-diff": "^0.5.4",
"list-exports": "*",
"tape": "^5.0.1"
Expand Down

0 comments on commit 5e15f56

Please sign in to comment.