redput

2.3.0 • Public • Published

redput License NPM version Build Status Coverage Status

CLI tool to download source of a rule and fixtures from 🐊Putout Editor and generate tests from it.

Install

npm i redput -g

Usage

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, test and fixture;

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);
};

License

MIT

Package Sidebar

Install

npm i redput

Weekly Downloads

5

Version

2.3.0

License

MIT

Unpacked Size

28.7 kB

Total Files

27

Last publish

Collaborators

  • coderaiser