Skip to content
Snippets Groups Projects
Commit 4ecbeaa5 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

fix(lint) Add missing eslint plugin

parent f254cc57
No related branches found
No related tags found
No related merge requests found
...@@ -82,6 +82,7 @@ ...@@ -82,6 +82,7 @@
"@ionic/cli": "^7.1.5", "@ionic/cli": "^7.1.5",
"@polkadot/typegen": "^10.11.1", "@polkadot/typegen": "^10.11.1",
"@polkadot/types": "^10.11.1", "@polkadot/types": "^10.11.1",
"@rx-angular/eslint-plugin": "~2.0.0",
"@types/jasmine": "~4.0.3", "@types/jasmine": "~4.0.3",
"@types/jasminewd2": "~2.0.10", "@types/jasminewd2": "~2.0.10",
"@types/node": "^18.18.13", "@types/node": "^18.18.13",
...@@ -8101,6 +8102,20 @@ ...@@ -8101,6 +8102,20 @@
"rxjs": "^6.5.3 || ^7.4.0" "rxjs": "^6.5.3 || ^7.4.0"
} }
}, },
"node_modules/@rx-angular/eslint-plugin": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@rx-angular/eslint-plugin/-/eslint-plugin-2.0.0.tgz",
"integrity": "sha512-/YHeWKPC3K1ekXC1tNmzmD/86zP4P6fZrWBQv3Rl9Elp/VIi50ZY4Vb1U831fUY9ekPOiFA8xYzSNtVPS7lI4A==",
"dev": true,
"dependencies": {
"@typescript-eslint/utils": "^6.10.0"
},
"peerDependencies": {
"@typescript-eslint/parser": "^6.10.0",
"eslint": ">=8.0.0",
"typescript": ">=4.3.5"
}
},
"node_modules/@rx-angular/state": { "node_modules/@rx-angular/state": {
"version": "17.0.0", "version": "17.0.0",
"resolved": "https://registry.npmjs.org/@rx-angular/state/-/state-17.0.0.tgz", "resolved": "https://registry.npmjs.org/@rx-angular/state/-/state-17.0.0.tgz",
......
...@@ -101,8 +101,7 @@ export class AuthController implements IAuthController { ...@@ -101,8 +101,7 @@ export class AuthController implements IAuthController {
modal = await this.modalCtrl.create({ modal = await this.modalCtrl.create({
component: AuthModal, component: AuthModal,
componentProps: <AuthModalOptions>{ componentProps: <AuthModalOptions>{
auth: opts?.auth, auth: opts?.auth
scrollY: false // TODO remove this !
} }
}); });
break; break;
...@@ -110,8 +109,7 @@ export class AuthController implements IAuthController { ...@@ -110,8 +109,7 @@ export class AuthController implements IAuthController {
modal = await this.modalCtrl.create({ modal = await this.modalCtrl.create({
component: AuthV2Modal, component: AuthV2Modal,
componentProps: <AuthModalOptions>{ componentProps: <AuthModalOptions>{
auth: opts?.auth, auth: opts?.auth
scrollY: false // TODO remove this !
} }
}); });
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment