@billogram/task-ts-lint
Task for linting TypeScript source files using ESLint
Install
yarn add @billogram/task-ts-lint
Usage
Add the task to a task runner.
import taskTsLint from '@billogram/task-ts-lint';
import TaskRunner from '@billogram/task-runner';
const runner = new TaskRunner('build-scripts');
runner.add('ts-lint', taskTsLint({
config: '@billogram/eslint-config-node',
}));
This will add the lint TypeScript task to the build scripts.
> build-scripts ts-lint
Note
This library is being published with our use cases in mind and is not necessarily meant to be consumed by the broader public. We probably won't take your feature requests unless they align with our own needs.
License
MIT