mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-05-24 12:21:53 +00:00
No description
| .vscode | ||
| src | ||
| test | ||
| .gitignore | ||
| .npmignore | ||
| gulpfile.js | ||
| LICENSE.md | ||
| package.json | ||
| README.md | ||
| yarn.lock | ||
Monaco YAML
YAML language plugin for the Monaco Editor. It provides the following features when editing YAML files:
- Code completion, based on JSON schemas or by looking at similar objects in the same file
- Hovers, based on JSON schemas
- Validation: Syntax errors and schema validation
- Formatting
- Document Symbols
- Syntax highlighting
Schemas can be provided by configuration. See here for the API that the JSON plugin offers to configure the JSON language support.
Installing
This npm module is bundled and distributed in the monaco-editor npm module.
Development
git clone https://github.com/kpdecker/monaco-yamlcd monaco-yamlnpm install .npm run watch- open
$/monaco-yaml/test/index.htmlin your favorite browser.