Skip to content

Commit 6b2f25d

Browse files
authored
Rename repository to new scope (#286)
1 parent f0c38de commit 6b2f25d

File tree

4 files changed

+15
-1569
lines changed

4 files changed

+15
-1569
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# @scalvert/eslint-formatter-todo
1+
# @lint-todo/eslint-formatter-todo
22

3-
![CI Build](https://github.com/scalvert/eslint-formatter-todo/workflows/CI%20Build/badge.svg)
4-
[![npm version](https://badge.fury.io/js/%40scalvert%2Feslint-formatter-todo.svg)](https://badge.fury.io/js/%40scalvert%2Feslint-formatter-todo)
5-
[![License](https://img.shields.io/npm/l/@scalvert/eslint-formatter-todo.svg)](https://github.com/@scalvert/eslint-formatter-todo/blob/master/package.json)
3+
![CI Build](https://github.com/lint-todo/eslint-formatter-todo/workflows/CI%20Build/badge.svg)
4+
[![npm version](https://badge.fury.io/js/%40lint-todo%2Feslint-formatter-todo.svg)](https://badge.fury.io/js/%40lint-todo%2Feslint-formatter-todo)
5+
[![License](https://img.shields.io/npm/l/@lint-todo/eslint-formatter-todo.svg)](https://github.com/@lint-todo/eslint-formatter-todo/blob/master/package.json)
66
![Dependabot](https://badgen.net/badge/icon/dependabot?icon=dependabot&label)
77
![Volta Managed](https://img.shields.io/static/v1?label=volta&message=managed&color=yellow&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAeQC6AMEpK7AhAAAACXBIWXMAAAsSAAALEgHS3X78AAAAB3RJTUUH5AMGFS07qAYEaAAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAAFmSURBVDjLY2CgB/g/j0H5/2wGW2xyTAQ1r2DQYOBgm8nwh+EY6TYvZtD7f9rn5e81fAGka17GYPL/esObP+dyj5Cs+edqZsv/V8o//H+z7P+XHarW+NSyoAv8WsFszyKTtoVBM5Tn7/Xys+zf7v76vYrJlPEvAwPjH0YGxp//3jGl/L8LU8+IrPnPUkY3ZomoDQwOpZwMv14zMHy8yMDwh4mB4Q8jA8OTgwz/L299wMDyx4Mp9f9NDAP+bWVwY3jGsJpB3JaDQVCEgYHlLwPDfwYWRqVQJgZmHoZ/+3PPfWP+68Mb/Pw5sqUoLni9ipuRnekrAwMjA8Ofb6K8/PKBF5nU7RX+Hize8Y2DOZTP7+kXogPy1zrH+f/vT/j/Z5nUvGcr5VhJioUf88UC/59L+/97gUgDyVH4YzqXxL8dOs/+zuFLJivd/53HseLPPHZPsjT/nsHi93cqozHZue7rLDYhUvUAADjCgneouzo/AAAAAElFTkSuQmCC&link=https://volta.sh)
88
![TypeScript](https://badgen.net/badge/icon/typescript?icon=typescript&label)
@@ -29,7 +29,7 @@ Todos are stored in a `.lint-todo` directory that should be checked in with othe
2929
To convert errors to todos, you can use the `UPDATE_TODO` environment variable. This will convert all active errors to todos, hiding them from the linting output.
3030

3131
```bash
32-
UPDATE_TODO=1 eslint --format @scalvert/eslint-formatter-todo
32+
UPDATE_TODO=1 eslint --format @lint-todo/eslint-formatter-todo
3333
```
3434

3535
If you want to see todos as part of `eslint`'s output, you can include them
@@ -39,14 +39,14 @@ If you want to see todos as part of `eslint`'s output, you can include them
3939
If an error is fixed manually, `eslint` will automatically remove the todo when run again.
4040

4141
```bash
42-
eslint . --format @scalvert/eslint-formatter-todo
42+
eslint . --format @lint-todo/eslint-formatter-todo
4343
```
4444

4545
If you want to opt out of this behavior, you can run with the `NO_CLEAN_TODO` env var set.
4646

4747
```bash
4848
# Will not remove the todo automatically
49-
NO_CLEAN_TODO='1' eslint . --format @scalvert/eslint-formatter-todo
49+
NO_CLEAN_TODO='1' eslint . --format @lint-todo/eslint-formatter-todo
5050
```
5151

5252
### Configuring Due Dates
@@ -88,7 +88,7 @@ Due dates can be configured in one of two ways, but both specify integers for `w
8888
1. Via environment variables
8989

9090
```bash
91-
UPDATE_TODO='1' TODO_DAYS_TO_WARN="5" TODO_DAYS_TO_ERROR="10" eslint . --format @scalvert/eslint-formatter-todo
91+
UPDATE_TODO='1' TODO_DAYS_TO_WARN="5" TODO_DAYS_TO_ERROR="10" eslint . --format @lint-todo/eslint-formatter-todo
9292
```
9393

9494
In order of precedence, environment variables override package.json configuration values.
@@ -111,7 +111,7 @@ Due dates can be configured in one of two ways, but both specify integers for `w
111111
...and you supply the following environment variables:
112112

113113
```bash
114-
UPDATE_TODO='1' TODO_DAYS_TO_WARN= '2' eslint . --format @scalvert/eslint-formatter-todo
114+
UPDATE_TODO='1' TODO_DAYS_TO_WARN= '2' eslint . --format @lint-todo/eslint-formatter-todo
115115
```
116116

117117
...the todos will be created with a `warn` date 2 days from the created date, and an `error` date 10 days from the created date.
@@ -165,11 +165,11 @@ Due dates can be configured on a per-rule basis with the `daysToDecayByRule` opt
165165
Converting errors to todos with `warn` and `error` dates that transition the `todo` to `warn` after 10 days and `error` after 20 days:
166166

167167
```bash
168-
UPDATE_TODO='1' TODO_DAYS_TO_WARN= '10' TODO_DAYS_TO_ERROR='20' eslint . --format @scalvert/eslint-formatter-todo
168+
UPDATE_TODO='1' TODO_DAYS_TO_WARN= '10' TODO_DAYS_TO_ERROR='20' eslint . --format @lint-todo/eslint-formatter-todo
169169
```
170170

171171
Converting errors to todos with `warn` and `error` dates that transition the `todo` `error` after 20 days, but doesn't include a `warn` date:
172172

173173
```bash
174-
UPDATE_TODO='1' TODO_DAYS_TO_WARN= '' TODO_DAYS_TO_ERROR='20' eslint . --format @scalvert/eslint-formatter-todo
174+
UPDATE_TODO='1' TODO_DAYS_TO_WARN= '' TODO_DAYS_TO_ERROR='20' eslint . --format @lint-todo/eslint-formatter-todo
175175
```

0 commit comments

Comments
 (0)