CLI tool to download source of a rule and fixtures from šPutout Editor and generate tests from it.
npm i redput -g
GITHUB_TOKEN=github-token redput [putout-editor-url]redput determines where it located and does one of next things:
- if it finds
index.js- creates rule inside nested plugin; - creates directory with a plugin name and fills directories
lib,testandfixture;
example of input:
// ["off", "write-all-files"]
export const report = () => `Write all files`;
export const fix = (file) => {
const content = readFileContent(file);
writeFileContent(file, content);
};
export const scan = (root, {push}) => {
findFile(root, ['*']).map(push);
};When you get your rule downloaded, use:
UPDATE=1 npm fix:lint testto finish preparations of new rule and tests.
MIT