diff options
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index f6407fa6f..66e75d485 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -23,7 +23,16 @@ module.exports = { 'bsky-internal/avoid-unwrapped-text': [ 'error', { - impliedTextComponents: ['H1', 'H2', 'H3', 'H4', 'H5', 'H6', 'P'], + impliedTextComponents: [ + 'H1', + 'H2', + 'H3', + 'H4', + 'H5', + 'H6', + 'P', + 'Admonition', + ], impliedTextProps: [], suggestedTextWrappers: { Button: 'ButtonText', |