DEV: Silence whitespace-eating-comment warnings (#27129)

e.g. `unexpectedly found "! no whitespace ~" when slicing source, but expected " no whitespace "`
See: https://github.com/emberjs/ember.js/issues/19392

Co-authored-by: David Taylor <david@taylorhq.com>
This commit is contained in:
Jarek Radosz 2024-05-22 16:21:51 +02:00 committed by GitHub
parent a77e3eeaf2
commit 24230e7461
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,6 @@
const SILENCED_WARN_PREFIXES = [
"Setting the `jquery-integration` optional feature flag",
'unexpectedly found "!', // https://github.com/emberjs/ember.js/issues/19392
];
class DeprecationSilencer {