diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-13 09:12:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-13 15:12:14 +0100 |
commit | db2c58d47ae0db8490a30cd3846f30e615c382b5 (patch) | |
tree | a269d4db3ad97704d9c57ae88f03cca309b56fbe /config/webpack | |
parent | 4da5f77d929d6b83c134cae1eefbc8ba2db752f8 (diff) |
Enable ESLint no-useless-escape (#23311)
Diffstat (limited to 'config/webpack')
-rw-r--r-- | config/webpack/shared.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/webpack/shared.js b/config/webpack/shared.js index 3447e711c..78f660cfc 100644 --- a/config/webpack/shared.js +++ b/config/webpack/shared.js @@ -55,7 +55,7 @@ module.exports = { chunks: 'all', minChunks: 2, minSize: 0, - test: /^(?!.*[\\\/]node_modules[\\\/]react-intl[\\\/]).+$/, + test: /^(?!.*[\\/]node_modules[\\/]react-intl[\\/]).+$/, }, }, }, |