1.0.1 • Published 6 years ago

eslint-formatter-todo v1.0.1

Weekly downloads
3,387
License
MIT
Repository
github
Last release
6 years ago

eslint-formatter-todo

Generate a configuration file acting as a TODO list for ESLint. Borrows the pattern from Rubocop's auto-gen-config option.

Install

$ yarn install --dev eslint-formatter-todo

Usage

Extend ./.eslintrc_todo.js from your .eslintrc. For example:

-  extends: 'my-eslint-config',
+  extends: ['my-eslint-config', './.eslintrc_todo.js'],

Null out your .eslintrc_todo.js and run eslint with the todo formatter to generate your TODO file:

echo "module.exports = {}" >| .eslintrc_todo.js
eslint --format=todo . --output-file ".eslintrc_todo.js"