Skip to content
Merged
Show file tree
Hide file tree
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: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

### Bug Fixes

- fix: stop reporting valid attributes such as `width` on `.column` as `Unknown attribute` by default. The `schema-unknown-attribute` diagnostic is now opt-in via the new `quartoWizard.lint.unknownAttributes` setting (default `false`), since Quarto Wizard has no built-in schema for Quarto/Pandoc internals ([#356](https://github.com/mcanouil/quarto-wizard/issues/356)).

## 3.1.1 (2026-06-14)

### Bug Fixes
Expand Down
24 changes: 23 additions & 1 deletion docs/reference/configuration.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,27 @@ URL to the Quarto extensions registry JSON file. Change this to use a custom reg
}
```

## Linting

### Report Unknown Attributes

**Setting**: `quartoWizard.lint.unknownAttributes`

Report inline attributes not declared by any installed extension schema as `Unknown attribute`.
Disabled by default: Quarto Wizard has no built-in schema for Quarto/Pandoc/revealjs internals (for example `width` on `.column`), so this would flag many valid attributes.
Enable only when authoring against extensions whose `_schema.yml` declares a complete attribute set.

| Property | Value |
| -------- | ------- |
| Type | Boolean |
| Default | `false` |

```json
{
"quartoWizard.lint.unknownAttributes": false
}
```

## Workspace vs User Settings

All Quarto Wizard settings are scoped to "resource", meaning they can be configured at:
Expand All @@ -102,6 +123,7 @@ Here is an example `settings.json` with all Quarto Wizard settings:
"quartoWizard.update.crossSource": false,
"quartoWizard.autoProjectDetection": subFolders,
"quartoWizard.cache.ttlMinutes": 30,
"quartoWizard.registry.url": "https://m.canouil.dev/quarto-extensions/extensions.json"
"quartoWizard.registry.url": "https://m.canouil.dev/quarto-extensions/extensions.json",
"quartoWizard.lint.unknownAttributes": false
}
```
Loading