You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to implement a matcher in useNamingConvention to align to an object member that begins with a dollar sign, using the regex \$(.+), however it's not accepting the escaped $.
Can support for this be included in a future build please? We've got a number of api calls that use this format in our project and, at the moment, they're littered with biome-ignores.
Expected result
\$(.+) is an acceptable matcher
Code of Conduct
I agree to follow Biome's Code of Conduct
The text was updated successfully, but these errors were encountered:
I'm trying to implement a matcher in useNamingConvention to align to an object member that begins with a dollar sign, using the regex $(.+), however it's not accepting the escaped $.
I guess it is in the Biome JSON config file? In that case you have to double escape \: \\$(.+). You can also write [$](.+)
Environment information
What happened?
I'm trying to implement a matcher in useNamingConvention to align to an object member that begins with a dollar sign, using the regex
\$(.+)
, however it's not accepting the escaped $.Can support for this be included in a future build please? We've got a number of api calls that use this format in our project and, at the moment, they're littered with biome-ignores.
Expected result
\$(.+)
is an acceptable matcherCode of Conduct
The text was updated successfully, but these errors were encountered: