fix: rollback regexp eslint changes

This commit is contained in:
Martin Guillon
2020-11-12 20:21:39 +01:00
parent 64e0aa6a11
commit ca56a30d56
4 changed files with 10 additions and 9 deletions

View File

@ -1,5 +1,5 @@
// regex that contains all symbols applicable for expression used to AI detect an expression.
const expressionSymbolsRegex = /[+-*/%?:<>=!|&()^~]/;
const expressionSymbolsRegex = /[\+\-\*\/%\?:<>=!\|&\(\)^~]/;
export namespace bindingConstants {
export const sourceProperty = 'sourceProperty';