lint-prettier.js 1.27 KB
Newer Older
陈帅's avatar
陈帅 committed
1 2 3 4
/**
 * copy to https://github.com/facebook/react/blob/master/scripts/prettier/index.js
 * prettier api doc https://prettier.io/docs/en/api.html
 *----------*****--------------
5
 *  lint file is prettier
陈帅's avatar
陈帅 committed
6 7 8 9 10
 *----------*****--------------
 */

const prettier = require('prettier');
const fs = require('fs');
陈帅's avatar
陈帅 committed
11
const chalk = require('chalk');
陈帅's avatar
陈帅 committed
12 13
const prettierConfigPath = require.resolve('../.prettierrc');

14
const files = process.argv.slice(2);
陈帅's avatar
陈帅 committed
15

16
let didError = false;
陈帅's avatar
陈帅 committed
17

陈帅's avatar
陈帅 committed
18
files.forEach(file => {
陈帅's avatar
陈帅 committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
  Promise.all([
    prettier.resolveConfig(file, {
      config: prettierConfigPath,
    }),
    prettier.getFileInfo(file),
  ])
    .then(resolves => {
      const [options, fileInfo] = resolves;
      if (fileInfo.ignored) {
        return;
      }
      const input = fs.readFileSync(file, 'utf8');
      const withParserOptions = {
        ...options,
        parser: fileInfo.inferredParser,
      };
      const output = prettier.format(input, withParserOptions);
      if (output !== input) {
        fs.writeFileSync(file, output, 'utf8');
        console.log(chalk.green(`${file} is prettier`));
      }
    })
    .catch(e => {
      didError = true;
    })
    .finally(() => {
      if (didError) {
        process.exit(1);
      }
      console.log(chalk.hex('#1890FF')('prettier success!'));
    });
陈帅's avatar
陈帅 committed
50
});