Skip to content

Commit

Permalink
docs: fix todo links (denoland#756)
Browse files Browse the repository at this point in the history
Co-authored-by: Jo Franchetti <jofranchetti@gmail.com>
  • Loading branch information
marvinhagemeister and thisisjofrank authored Aug 28, 2024
1 parent 5dd30e2 commit 9802039
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions runtime/fundamentals/linting_and_formatting.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ building amazing applications.
## Linting

Linting is the process of analyzing your code for potential errors, bugs, and
stylistic issues. Deno’s built-in linter, [`deno lint`](TODO:lint-cli-ref),
supports recommended set of rules from [ESLint](https://eslint.org/) to provide
comprehensive feedback on your code. This includes identifying syntax errors,
enforcing coding conventions, and highlighting potential issues that could lead
to bugs.
stylistic issues. Deno’s built-in linter,
[`deno lint`](/runtime/manual/tools/linter/), supports recommended set of rules
from [ESLint](https://eslint.org/) to provide comprehensive feedback on your
code. This includes identifying syntax errors, enforcing coding conventions, and
highlighting potential issues that could lead to bugs.

To run the linter, use the following command in your terminal:

Expand All @@ -39,9 +39,9 @@ deno lint src/

This command will lint all files in the `src/` directory.

The linter can be configured in a [`deno.json`](TODO:config-link) file. You can
specify custom rules, plugins, and settings to tailor the linting process to
your needs.
The linter can be configured in a
[`deno.json`](/runtime/fundamentals/configuration/) file. You can specify custom
rules, plugins, and settings to tailor the linting process to your needs.

## Formatting

Expand Down Expand Up @@ -113,6 +113,6 @@ before being merged.
| unstable-yaml | Enable formatting YAML files | | |
| use-tabs | Use tabs instead of spaces for indentation | **false** | true, false |
The formatter can be configured in a [`deno.json`](TODO:config-link) file. You
can specify custom rules, plugins, and settings to tailor the formatting process
to your needs.
The formatter can be configured in a
[`deno.json`](/runtime/fundamentals/configuration/) file. You can specify custom
rules, plugins, and settings to tailor the formatting process to your needs.

0 comments on commit 9802039

Please sign in to comment.