mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-04 22:56:20 +08:00
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
![]() |
export async function lint(code: string) {
|
||
|
|
||
|
const Linter = (await import("eslint-linter-browserify")).Linter;
|
||
|
|
||
|
return new Linter().verify(code, {
|
||
|
|
||
|
});
|
||
|
|
||
|
}
|