Skip to content

Commit

Permalink
deps: revert eslint-plugin-import@2.24.2
Browse files Browse the repository at this point in the history
  • Loading branch information
andrevmatos committed Oct 12, 2021
1 parent 403cf07 commit fcb925e
Show file tree
Hide file tree
Showing 6 changed files with 213 additions and 42 deletions.
189 changes: 172 additions & 17 deletions .github/actions/changelog-reminder/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/actions/changelog-reminder/package.json
Expand Up @@ -25,6 +25,6 @@
"@zeit/ncc": "0.22.3",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.25.1"
"eslint-plugin-import": "2.24.2"
}
}
8 changes: 7 additions & 1 deletion .github/renovate.json
Expand Up @@ -3,7 +3,7 @@
"commitMessagePrefix": "deps:",
"packageRules": [
{
"excludePackagePatterns": ["^typescript$", "^typedoc$", "typedoc-plugin", "^python$"],
"excludePackagePatterns": ["^typescript$", "^typedoc$", "typedoc-plugin", "^python$", "^eslint", "^@typescript-eslint"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all non-major dependencies and lockFile maintenance",
"groupSlug": "all-minor-patch-lock",
Expand All @@ -28,6 +28,12 @@
"groupSlug": "typedoc",
"dependencyDashboardApproval": true
},
{
"matchPackagePatterns": ["eslint", "^@typescript-eslint"],
"groupName": "eslint",
"groupSlug": "eslint",
"dependencyDashboardApproval": true
},
{
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -36,7 +36,7 @@
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsdoc": "^36.1.1",
"eslint-plugin-lodash": "^7.3.0",
"eslint-plugin-prettier": "^4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion raiden-dapp/tests/unit/service-worker/assistant.spec.ts
Expand Up @@ -94,7 +94,6 @@ describe('ServiceWorkerAssistant', () => {
Object.defineProperty(global.navigator, 'serviceWorker', { writable: true });
Object.defineProperty(global, 'fetch', { writable: true });

consoleWarnSpy = jest.spyOn(console, 'warn').mockImplementation((_message) => undefined);
windowReloadSpy = jest.fn().mockImplementation(() => undefined);
Reflect.deleteProperty(global.window, 'location');
global.window.location = {
Expand All @@ -117,6 +116,7 @@ describe('ServiceWorkerAssistant', () => {
});

beforeEach(() => {
consoleWarnSpy = jest.spyOn(console, 'warn').mockImplementation((_message) => undefined);
intervalIds = [];
jest.clearAllMocks();
serviceWorkerContainer.clear();
Expand Down

0 comments on commit fcb925e

Please sign in to comment.