├── .eslintignore ├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ ├── auto-merge.yml │ └── ci-build.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── README.md ├── RELEASE.md ├── __tests__ ├── __fixtures__ │ ├── ember-template-lint-single-error.json │ ├── eslint-with-errors-warnings-todos.json │ ├── eslint-with-errors.json │ ├── eslint-with-todos.json │ ├── fixtures.ts │ ├── no-errors.js │ ├── with-errors-0.js │ ├── with-errors-1.js │ ├── with-errors-and-warnings.js │ ├── with-errors-for-fuzzy.js │ ├── with-fixable-error.js │ └── with-no-problems.js ├── __utils__ │ ├── build-read-options.ts │ ├── deep-copy.ts │ ├── fake-project.ts │ ├── get-fixture.ts │ ├── set-env.ts │ ├── setup-env-var.ts │ └── update-paths.ts ├── acceptance │ └── eslint-with-todo-formatter-test.ts ├── tsconfig.json └── unit │ ├── formatter-test.ts │ ├── print-results-test.ts │ └── utils-test.ts ├── docs ├── post-todo.png └── pre-todo.png ├── jest.config.js ├── package.json ├── src ├── formatter.ts ├── get-base-dir.ts ├── index.ts ├── print-results.ts └── types │ └── index.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/ci-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/.github/workflows/ci-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | __tests__/__fixtures/* -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/RELEASE.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/ember-template-lint-single-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__fixtures__/ember-template-lint-single-error.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/eslint-with-errors-warnings-todos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__fixtures__/eslint-with-errors-warnings-todos.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/eslint-with-errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__fixtures__/eslint-with-errors.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/eslint-with-todos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__fixtures__/eslint-with-todos.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__fixtures__/fixtures.ts -------------------------------------------------------------------------------- /__tests__/__fixtures__/no-errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__fixtures__/no-errors.js -------------------------------------------------------------------------------- /__tests__/__fixtures__/with-errors-0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__fixtures__/with-errors-0.js -------------------------------------------------------------------------------- /__tests__/__fixtures__/with-errors-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__fixtures__/with-errors-1.js -------------------------------------------------------------------------------- /__tests__/__fixtures__/with-errors-and-warnings.js: -------------------------------------------------------------------------------- 1 | function sayHi() { 2 | alert("hi"); 3 | } 4 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/with-errors-for-fuzzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__fixtures__/with-errors-for-fuzzy.js -------------------------------------------------------------------------------- /__tests__/__fixtures__/with-fixable-error.js: -------------------------------------------------------------------------------- 1 | function addOne(i) { 2 | return i + 1; 3 | } 4 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/with-no-problems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__fixtures__/with-no-problems.js -------------------------------------------------------------------------------- /__tests__/__utils__/build-read-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__utils__/build-read-options.ts -------------------------------------------------------------------------------- /__tests__/__utils__/deep-copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__utils__/deep-copy.ts -------------------------------------------------------------------------------- /__tests__/__utils__/fake-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__utils__/fake-project.ts -------------------------------------------------------------------------------- /__tests__/__utils__/get-fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__utils__/get-fixture.ts -------------------------------------------------------------------------------- /__tests__/__utils__/set-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__utils__/set-env.ts -------------------------------------------------------------------------------- /__tests__/__utils__/setup-env-var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__utils__/setup-env-var.ts -------------------------------------------------------------------------------- /__tests__/__utils__/update-paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/__utils__/update-paths.ts -------------------------------------------------------------------------------- /__tests__/acceptance/eslint-with-todo-formatter-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/acceptance/eslint-with-todo-formatter-test.ts -------------------------------------------------------------------------------- /__tests__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/tsconfig.json -------------------------------------------------------------------------------- /__tests__/unit/formatter-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/unit/formatter-test.ts -------------------------------------------------------------------------------- /__tests__/unit/print-results-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/unit/print-results-test.ts -------------------------------------------------------------------------------- /__tests__/unit/utils-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/__tests__/unit/utils-test.ts -------------------------------------------------------------------------------- /docs/post-todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/docs/post-todo.png -------------------------------------------------------------------------------- /docs/pre-todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/docs/pre-todo.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/package.json -------------------------------------------------------------------------------- /src/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/src/formatter.ts -------------------------------------------------------------------------------- /src/get-base-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/src/get-base-dir.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/print-results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/src/print-results.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lint-todo/eslint-formatter-todo/HEAD/tsconfig.json --------------------------------------------------------------------------------