Fix no-template-curly-in-string issues (#9221)

See [`no-template-curly-in-string`](https://eslint.org/docs/rules/no-template-curly-in-string) for more information.

This change enables `no-template-curly-in-string` and fixes the issues raised by the rule.
feature/default_network_editable
Whymarrh Whitby 4 years ago committed by GitHub
parent 944f6d4880
commit 3bd22a2058
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .eslintrc.js
  2. 2
      app/scripts/lib/decrypt-message-manager.js
  3. 2
      app/scripts/lib/encryption-public-key-manager.js
  4. 2
      app/scripts/lib/message-manager.js
  5. 2
      app/scripts/lib/typed-message-manager.js

@ -59,6 +59,7 @@ module.exports = {
'no-plusplus': ['error', { 'allowForLoopAfterthoughts': true }], 'no-plusplus': ['error', { 'allowForLoopAfterthoughts': true }],
'no-process-exit': 'error', 'no-process-exit': 'error',
'no-prototype-builtins': 'error', 'no-prototype-builtins': 'error',
'no-template-curly-in-string': 'error',
'no-useless-catch': 'error', 'no-useless-catch': 'error',
'no-useless-concat': 'error', 'no-useless-concat': 'error',
'prefer-rest-params': 'error', 'prefer-rest-params': 'error',

@ -253,7 +253,7 @@ export default class DecryptMessageManager extends EventEmitter {
_setMsgStatus (msgId, status) { _setMsgStatus (msgId, status) {
const msg = this.getMsg(msgId) const msg = this.getMsg(msgId)
if (!msg) { if (!msg) {
throw new Error('DecryptMessageManager - Message not found for id: "${msgId}".') throw new Error(`DecryptMessageManager - Message not found for id: "${msgId}".`)
} }
msg.status = status msg.status = status
this._updateMsg(msg) this._updateMsg(msg)

@ -247,7 +247,7 @@ export default class EncryptionPublicKeyManager extends EventEmitter {
_setMsgStatus (msgId, status) { _setMsgStatus (msgId, status) {
const msg = this.getMsg(msgId) const msg = this.getMsg(msgId)
if (!msg) { if (!msg) {
throw new Error('EncryptionPublicKeyManager - Message not found for id: "${msgId}".') throw new Error(`EncryptionPublicKeyManager - Message not found for id: "${msgId}".`)
} }
msg.status = status msg.status = status
this._updateMsg(msg) this._updateMsg(msg)

@ -225,7 +225,7 @@ export default class MessageManager extends EventEmitter {
_setMsgStatus (msgId, status) { _setMsgStatus (msgId, status) {
const msg = this.getMsg(msgId) const msg = this.getMsg(msgId)
if (!msg) { if (!msg) {
throw new Error('MessageManager - Message not found for id: "${msgId}".') throw new Error(`MessageManager - Message not found for id: "${msgId}".`)
} }
msg.status = status msg.status = status
this._updateMsg(msg) this._updateMsg(msg)

@ -292,7 +292,7 @@ export default class TypedMessageManager extends EventEmitter {
_setMsgStatus (msgId, status) { _setMsgStatus (msgId, status) {
const msg = this.getMsg(msgId) const msg = this.getMsg(msgId)
if (!msg) { if (!msg) {
throw new Error('TypedMessageManager - Message not found for id: "${msgId}".') throw new Error(`TypedMessageManager - Message not found for id: "${msgId}".`)
} }
msg.status = status msg.status = status
this._updateMsg(msg) this._updateMsg(msg)

Loading…
Cancel
Save