Skip to content

Commit

Permalink
disable eslint rule only in one file
Browse files Browse the repository at this point in the history
  • Loading branch information
HananINouman committed Feb 4, 2025
1 parent fa31479 commit 8d29a91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ module.exports = {
'@typescript-eslint/member-delimiter-style': 'off',
'no-useless-catch': 0,
'new-cap': 0,
"@typescript-eslint/naming-convention": 'off',
'@typescript-eslint/restrict-template-expressions':'off'
"@typescript-eslint/naming-convention": 'off'
},
};
1 change: 1 addition & 0 deletions src/verification/signature-validator.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/restrict-template-expressions */
import { ethers } from 'ethers';
import {
SignTypedDataVersion,
Expand Down

0 comments on commit 8d29a91

Please sign in to comment.