mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
add ESLint exceptions for //= and //-, re #3568
This commit is contained in:
parent
904f00e8ac
commit
bb6af25e20
@ -148,7 +148,7 @@
|
|||||||
"space-in-parens": [1, "never"],
|
"space-in-parens": [1, "never"],
|
||||||
"space-infix-ops": 2,
|
"space-infix-ops": 2,
|
||||||
"space-unary-ops": [2, { "words": true, "nonwords": false }],
|
"space-unary-ops": [2, { "words": true, "nonwords": false }],
|
||||||
"spaced-comment": [2, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
|
"spaced-comment": [2, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","], "exceptions": ["=", "-"] } ],
|
||||||
"strict": 0,
|
"strict": 0,
|
||||||
"template-curly-spacing": [2, "never"],
|
"template-curly-spacing": [2, "never"],
|
||||||
"use-isnan": 2,
|
"use-isnan": 2,
|
||||||
|
@ -858,11 +858,11 @@ module.exports = class MetamaskController extends EventEmitter {
|
|||||||
// END (VAULT / KEYRING RELATED METHODS)
|
// END (VAULT / KEYRING RELATED METHODS)
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
|
||||||
|
//
|
||||||
|
|
||||||
|
//=============================================================================
|
||||||
//=============================================================================
|
|
||||||
// MESSAGES
|
// MESSAGES
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
|
||||||
async retryTransaction (txId, cb) {
|
async retryTransaction (txId, cb) {
|
||||||
await this.txController.retryTransaction(txId)
|
await this.txController.retryTransaction(txId)
|
||||||
|
Loading…
Reference in New Issue
Block a user