Skip to content

Commit

Permalink
chore: replace lint.deno.land with /lint/ page (#1289)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju authored Dec 30, 2024
1 parent 5a7ed1d commit 3369cce
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions lint/rules/ban-unknown-rule-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ tags: [recommended]
Warns the usage of unknown rule codes in ignore directives.

We sometimes have to suppress and ignore lint errors for some reasons. We can do
so using [ignore directives](https://lint.deno.land/ignoring-rules) with rule
names that should be ignored like so:
so using [ignore directives](/go/lint-ignore/) with rule names that should be
ignored like so:

```typescript
// deno-lint-ignore no-explicit-any no-unused-vars
Expand Down
2 changes: 1 addition & 1 deletion lint/rules/ban-unused-ignore.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ tags: [recommended]
Warns unused ignore directives.

We sometimes have to suppress and ignore lint errors for some reasons and we can
do so using [ignore directives](https://lint.deno.land/ignoring-rules).
do so using [ignore directives](/go/lint-ignore/).

In some cases, however, like after refactoring, we may end up having ignore
directives that are no longer necessary. Such superfluous ignore directives are
Expand Down
4 changes: 2 additions & 2 deletions lint/rules/prefer-const.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ write buggy code. So this lint rule checks if there are [`let`] variables that
could potentially be declared with [`const`] instead.

Note that this rule does not check for [`var`] variables. Instead,
[the `no-var` rule](https://lint.deno.land/rules/no-var) is responsible for
detecting and warning [`var`] variables.
[the `no-var` rule](/lint/rules/no-var) is responsible for detecting and warning
[`var`] variables.

[`let`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let
[`const`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const
Expand Down
2 changes: 1 addition & 1 deletion runtime/fundamentals/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ This configuration will:
- removes the `no-unused-vars` rule excluded.

You can find a full list of available linting rules in the
[Deno lint documentation](https://lint.deno.land/).
[List of rules](/lint/) documentation page.

Read more about [linting with Deno](/runtime/reference/cli/linter/).

Expand Down
2 changes: 1 addition & 1 deletion runtime/fundamentals/linting_and_formatting.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The linter can be configured in a
rules, plugins, and settings to tailor the linting process to your needs.

You can view and search the list of available rules and their usage on
[Deno lint rules](https://lint.deno.land/).
[List of rules](/lint/) documentation page.

## Formatting

Expand Down
8 changes: 4 additions & 4 deletions runtime/fundamentals/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ error[no-process-globals]: NodeJS process global is discouraged in Deno
| ^^^^^^^
= hint: Add `import process from "node:process";`
docs: https://lint.deno.land/rules/no-process-globals
docs: https://docs.deno.com/lint/rules/no-process-globals
Found 1 problem (1 fixable via --fix)
Expand Down Expand Up @@ -674,7 +674,7 @@ error[no-constant-condition]: Use of a constant expressions as conditions is not
| ^^^^
= hint: Remove the constant expression
docs: https://lint.deno.land/rules/no-constant-condition
docs: https://docs.deno.com/lint/rules/no-constant-condition
Found 1 problem
Expand All @@ -688,8 +688,8 @@ deno lint --fix
```
A full list of all supported linting rules can be found on
[https://lint.deno.land/](https://lint.deno.land/). To learn more about how to
configure the linter, check out the
[https://docs.deno.com/lint/](https://docs.deno.com/lint/). To learn more about
how to configure the linter, check out the
[`deno lint` subcommand](/runtime/reference/cli/linter/).
**Formatting**
Expand Down
2 changes: 1 addition & 1 deletion runtime/reference/cli/lint.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ command: lint
## Available rules

For a complete list of supported rules, visit
[the deno_lint rule documentation](https://lint.deno.land).
[List of rules](https://docs.deno.com/lint/) documentation page.

## Ignore directives

Expand Down
2 changes: 1 addition & 1 deletion runtime/reference/deno_namespace_apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ A couple notes on this example:
- `addEventListener` and `onload`/`onunload` are prefixed with `globalThis`, but
you could also use `self` or no prefix at all.
[It is not recommended to use `window` as a prefix](https://lint.deno.land/#no-window-prefix).
[It is not recommended to use `window` as a prefix](https://docs.deno.com/lint/rules/no-window-prefix).
- You can use `addEventListener` and/or `onload`/`onunload` to define handlers
for events. There is a major difference between them, let's run the example:
Expand Down

0 comments on commit 3369cce

Please sign in to comment.