diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-21 09:31:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-21 14:31:21 +0000 |
commit | f041f808891d6fc16e02a05b96a398ab432c756a (patch) | |
tree | f56c7ddbb4ec11a09822c5c53e23a9d7031a83e5 /ext/js/pages/settings/profile-conditions-ui.js | |
parent | 7dcf023dcc164b24f2c18ed6ba1140342c2797c5 (diff) |
Enable no-new eslint rule (#411)
Diffstat (limited to 'ext/js/pages/settings/profile-conditions-ui.js')
-rw-r--r-- | ext/js/pages/settings/profile-conditions-ui.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/js/pages/settings/profile-conditions-ui.js b/ext/js/pages/settings/profile-conditions-ui.js index 715aeb69..8e5da3d8 100644 --- a/ext/js/pages/settings/profile-conditions-ui.js +++ b/ext/js/pages/settings/profile-conditions-ui.js @@ -389,6 +389,7 @@ export class ProfileConditionsUI extends EventDispatcher { */ _validateRegExp(value) { try { + // eslint-disable-next-line no-new new RegExp(value, 'i'); return true; } catch (e) { |