mirror of
https://github.com/gibbok/typescript-book
synced 2024-11-16 19:47:27 +01:00
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import * as prettier from 'prettier';
|
|
import * as fs from 'fs';
|
|
import { Language, languages } from './i18n';
|
|
import { PrettierOptions, getPrettierOptions, makeFilePath } from './utils';
|
|
import { CODE_BLOCK_TS_REGEX } from './config';
|
|
|
|
const lintCodeBlocksInMarkdownFile = async (filePath: string, options: PrettierOptions, language: Language): Promise<void> => {
|
|
const markdown = await fs.promises.readFile(filePath, 'utf-8');
|
|
|
|
let reportSnippetsNotLinted = '';
|
|
let match;
|
|
while ((match = CODE_BLOCK_TS_REGEX.exec(markdown)) !== null) {
|
|
const code = match[1].trim() + '\n'
|
|
const isCodeLinted = await prettier.check(code, {
|
|
parser: 'typescript',
|
|
...options,
|
|
});
|
|
if (isCodeLinted === false) {
|
|
reportSnippetsNotLinted += code
|
|
reportSnippetsNotLinted += '\n'
|
|
}
|
|
}
|
|
if (reportSnippetsNotLinted.length === 0) {
|
|
console.log(`${language} All snippets are linted!`)
|
|
} else {
|
|
console.error(`${language} Not all snippets are linted! Please use this command to automatically format the snippets: npm run format\n`)
|
|
console.error(reportSnippetsNotLinted)
|
|
process.exit(1)
|
|
}
|
|
}
|
|
|
|
const main = async () => {
|
|
const options = await getPrettierOptions()
|
|
|
|
for (const language of languages) {
|
|
lintCodeBlocksInMarkdownFile(makeFilePath(language), options, language);
|
|
}
|
|
}
|
|
|
|
main()
|
|
|
|
|