()
| 759 | export const lint = series(lintDocs, lintFiles); |
| 760 | |
| 761 | export const spell = async () => { |
| 762 | await spellCheck('.'); |
| 763 | await spellCheck('src', true); |
| 764 | await spellCheck('test', true); |
| 765 | await spellCheck('site', true); |
| 766 | }; |
| 767 | |
| 768 | export const ts = async () => { |
| 769 | await tsCheck('src'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…