Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion runtime/fundamentals/linting_and_formatting.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
last_modified: 2025-12-16
last_modified: 2026-05-17
title: "Linting and formatting"
description: "A guide to Deno's built-in code quality tools. Learn how to use deno lint and deno fmt commands, configure rules, integrate with CI/CD pipelines, and maintain consistent code style across your projects."
---
Expand Down Expand Up @@ -176,6 +176,10 @@ The newline character to use
- **Default:** `lf`
- **Possible values:** `auto`, `crlf`, `lf`, `system`

Use `auto` to preserve the file's existing newline style when Deno can detect
one. Use `system` to use the current operating system's default newline style,
which is `crlf` on Windows and `lf` on Unix-like systems.

#### `nextControlFlowPosition`

Define position of next control flow
Expand Down
Loading