We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-useless-escape
1 parent 0a90f79 commit 6337d5aCopy full SHA for 6337d5a
packages/toolkit/scripts/fixUniqueSymbolExports.mts
@@ -30,8 +30,8 @@ const main = async () => {
30
const lines = content.split('\n')
31
32
const allUniqueSymbols = lines
33
- .filter((line) => /declare const (\w+)\: unique symbol;/.test(line))
34
- .map((line) => line.match(/declare const (\w+)\: unique symbol;/)?.[1])
+ .filter((line) => /declare const (\w+): unique symbol;/.test(line))
+ .map((line) => line.match(/declare const (\w+): unique symbol;/)?.[1])
35
36
if (allUniqueSymbols.length === 0) {
37
console.log(`${filePath} does not have any unique symbols.`)
0 commit comments