-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprecommit.js
51 lines (44 loc) · 1.47 KB
/
precommit.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
50
51
const { promisify } = require('util');
const exec = promisify(require('child_process').exec);
const path = require('path');
function sleep(ms = 0) {
return new Promise((resolve) => {
setTimeout(() => {
resolve();
}, ms);
});
}
(async () => {
const { stdout } = await exec(`git diff --name-only --cached`, { cwd: __dirname });
const files = stdout
.trim()
.split('\n')
.filter((f) => f != '');
const prettierFiles = [];
const eslintFiles = [];
for (const file of files) {
// Prettier
if (/\.(t|j)sx?$/.test(file) || /\.(c|sa|sc)ss$/.test(file)) {
prettierFiles.push('"' + file.split('/').join(path.sep) + '"');
}
// ESlint
if (/\.(t|j)sx?$/.test(file)) {
eslintFiles.push('"' + file.split('/').join(path.sep) + '"');
}
}
try {
if (prettierFiles.length) {
const cmd = 'node_modules/.bin/prettier'.split('/').join(path.sep);
await exec(`${cmd} --write ${prettierFiles.join(' ')}`, { cwd: __dirname });
}
if (eslintFiles.length) {
const cmd = 'node_modules/.bin/eslint'.split('/').join(path.sep);
await exec(`${cmd} --fix ${eslintFiles.join(' ')}`, { cwd: __dirname });
}
} catch (e) {
console.error(e);
throw e;
}
await exec(`git add ${files.map((f) => '"' + f + '"').join(' ')}`, { cwd: __dirname });
await sleep(1000);
})();