mirror of
https://github.com/yldio/copilot.git
synced 2024-11-14 23:30:05 +02:00
feat: Lint changed before commit, except if partially staged
This commit is contained in:
parent
77bb76bf1a
commit
67aedbdc54
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
const { config } = require('../package.json');
|
const { config } = require('../package.json');
|
||||||
const { exists, access } = require('mz/fs');
|
const { exists } = require('mz/fs');
|
||||||
const sgf = require('staged-git-files');
|
const sgf = require('staged-git-files');
|
||||||
const forceArray = require('force-array');
|
const forceArray = require('force-array');
|
||||||
const awaitify = require('apr-awaitify');
|
const awaitify = require('apr-awaitify');
|
||||||
@ -108,7 +108,10 @@ const staged = async () => {
|
|||||||
changed,
|
changed,
|
||||||
async (modifieds, file) => {
|
async (modifieds, file) => {
|
||||||
const isUnstaged = unstaged.filter(f => f === file.filename).length;
|
const isUnstaged = unstaged.filter(f => f === file.filename).length;
|
||||||
if (file.status === 'Modified' && isUnstaged) {
|
if (
|
||||||
|
(file.status === 'Modified' || file.status === 'Added') &&
|
||||||
|
isUnstaged
|
||||||
|
) {
|
||||||
modifieds.push(file);
|
modifieds.push(file);
|
||||||
} else {
|
} else {
|
||||||
await add(file.filename);
|
await add(file.filename);
|
||||||
|
@ -1,16 +1,19 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
const { packages } = require('../lerna.json');
|
const { packages } = require('../lerna.json');
|
||||||
const { readFile } = require('mz/fs');
|
const { readFile, exists } = require('mz/fs');
|
||||||
const sgf = require('staged-git-files');
|
const sgf = require('staged-git-files');
|
||||||
const execa = require('execa');
|
const execa = require('execa');
|
||||||
const awaitify = require('apr-awaitify');
|
const awaitify = require('apr-awaitify');
|
||||||
|
const asyncFilter = require('apr-filter');
|
||||||
const main = require('apr-main');
|
const main = require('apr-main');
|
||||||
const map = require('apr-map');
|
const map = require('apr-map');
|
||||||
|
const reduce = require('apr-reduce');
|
||||||
const globby = require('globby');
|
const globby = require('globby');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const uniq = require('lodash.uniq');
|
const uniq = require('lodash.uniq');
|
||||||
const argv = require('yargs').argv;
|
const argv = require('yargs').argv;
|
||||||
|
const checksum = require('checksum');
|
||||||
|
|
||||||
const ROOT = path.join(__dirname, '..');
|
const ROOT = path.join(__dirname, '..');
|
||||||
const getStaged = awaitify(sgf);
|
const getStaged = awaitify(sgf);
|
||||||
@ -42,6 +45,71 @@ const run = async scope => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const runLint = async scope => {
|
||||||
|
await lint(scope);
|
||||||
|
};
|
||||||
|
|
||||||
|
const runTest = async scope => {
|
||||||
|
await test(scope);
|
||||||
|
};
|
||||||
|
|
||||||
|
const getUnstaged = async () => {
|
||||||
|
const unstaged = await execa('git', ['ls-files', '-m']);
|
||||||
|
return unstaged.stdout.split('\n');
|
||||||
|
};
|
||||||
|
|
||||||
|
const asyncChecksum = awaitify(checksum.file);
|
||||||
|
|
||||||
|
const add = async filename => execa('git', ['add', filename]);
|
||||||
|
|
||||||
|
const runLintAndGitAdd = async (staged, pkgs) => {
|
||||||
|
const unstaged = (await getUnstaged()).map(file => path.resolve(ROOT, file));
|
||||||
|
|
||||||
|
const existing = await asyncFilter(
|
||||||
|
staged,
|
||||||
|
async ({ filename }) => await exists(filename)
|
||||||
|
);
|
||||||
|
|
||||||
|
const checksums = await map(existing, async file => {
|
||||||
|
const checksum = await asyncChecksum(file.filename);
|
||||||
|
return Object.assign({}, file, { checksum });
|
||||||
|
});
|
||||||
|
|
||||||
|
await map(pkgs.map(({ name }) => name), runLint);
|
||||||
|
|
||||||
|
const changed = await asyncFilter(
|
||||||
|
checksums,
|
||||||
|
async ({ filename, checksum }) => {
|
||||||
|
const newChecksum = await asyncChecksum(filename);
|
||||||
|
return checksum != newChecksum;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
const modifieds = await reduce(
|
||||||
|
changed,
|
||||||
|
async (modifieds, file) => {
|
||||||
|
const isUnstaged = unstaged.filter(f => f === file.filename).length;
|
||||||
|
if (
|
||||||
|
(file.status === 'Modified' || file.status === 'Added') &&
|
||||||
|
isUnstaged
|
||||||
|
) {
|
||||||
|
modifieds.push(file);
|
||||||
|
} else {
|
||||||
|
await add(file.filename);
|
||||||
|
}
|
||||||
|
return modifieds;
|
||||||
|
},
|
||||||
|
[]
|
||||||
|
);
|
||||||
|
|
||||||
|
if (modifieds.length) {
|
||||||
|
modifieds.forEach(modified =>
|
||||||
|
console.log('PARTIALLY STAGED FILE ', modified.filename)
|
||||||
|
);
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const gather = async () => {
|
const gather = async () => {
|
||||||
const locations = await globby(packages, {
|
const locations = await globby(packages, {
|
||||||
cwd: ROOT
|
cwd: ROOT
|
||||||
@ -49,19 +117,28 @@ const gather = async () => {
|
|||||||
|
|
||||||
const staged = (await getStaged())
|
const staged = (await getStaged())
|
||||||
.filter(({ status }) => statuses.indexOf(status) >= 0)
|
.filter(({ status }) => statuses.indexOf(status) >= 0)
|
||||||
.map(({ filename }) => path.resolve(ROOT, filename));
|
// .map(({ filename }) => path.resolve(ROOT, filename));
|
||||||
|
.map(file =>
|
||||||
|
Object.assign({}, file, { filename: path.resolve(ROOT, file.filename) })
|
||||||
|
);
|
||||||
|
|
||||||
const folders = uniq(
|
const folders = uniq(
|
||||||
locations
|
locations
|
||||||
.map(folder => path.resolve(ROOT, folder))
|
.map(folder => path.resolve(ROOT, folder))
|
||||||
.filter(folder => staged.some(i => i.indexOf(folder) >= 0))
|
.filter(folder => staged.some(i => i.filename.indexOf(folder) >= 0))
|
||||||
);
|
);
|
||||||
|
|
||||||
const pkgs = await map(folders, async folder =>
|
const pkgs = await map(folders, async folder =>
|
||||||
JSON.parse(await readFile(path.join(folder, 'package.json'), 'utf-8'))
|
JSON.parse(await readFile(path.join(folder, 'package.json'), 'utf-8'))
|
||||||
);
|
);
|
||||||
|
|
||||||
return map(pkgs.map(({ name }) => name), run);
|
if (argv.lint) {
|
||||||
|
await runLintAndGitAdd(staged, pkgs);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (argv.test) {
|
||||||
|
await await map(pkgs.map(({ name }) => name), runTest);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
main(gather());
|
main(gather());
|
||||||
|
Loading…
Reference in New Issue
Block a user