An open API service indexing awesome lists of open source software.

https://github.com/95jonpet/kickstart-language-support

Support for Kickstart files in VS Code
https://github.com/95jonpet/kickstart-language-support

kickstart vscode vscode-extension

Last synced: 10 months ago
JSON representation

Support for Kickstart files in VS Code

Awesome Lists containing this project

README

          

# Kickstart Language Support

Support for Kickstart (`.ks`) files in Visual Studio Code

## Features

This extension adds the following features to Visual Studio Code:

- Syntax highlighting for `.ks` files.
- Linting for `.ks` files using `ksvalidator`.
- Completion support for `.ks` files.
- Snippets for commonly used sections in `.ks` files.

## Linter install

The `ksvalidator` linter can typically be installed using `dnf` or `yum` on RHEL-based distributions of Linux:

```bash
dnf install pykickstart
```

**Note:** The package may be called something different depending on distribution and repo.

For other Linux distributions, [pykickstart](https://pypi.org/project/pykickstart/) can be installed using Python 3 and `pip`:

```bash
python3 -m pip install pykickstart
```