fix(linter): missing closing ticks in some example blocks (#4994)

These broken example blocks breaks codegen for the upstream PR in this stack.
This commit is contained in:
DonIsaac 2024-08-19 20:25:14 +00:00
parent a0effab160
commit 7b99386071
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ declare_oxc_lint!(
/// import thing from './__mocks__/index'; /// import thing from './__mocks__/index';
/// require('./__mocks__/index'); /// require('./__mocks__/index');
/// require('__mocks__'); /// require('__mocks__');
/// /// ```
NoMocksImport, NoMocksImport,
style style
); );

View file

@ -62,7 +62,7 @@ declare_oxc_lint!(
/// ///
/// // ... /// // ...
/// }); /// });
/// /// ```
NoRestrictedJestMethods, NoRestrictedJestMethods,
style, style,
); );