Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Kampfkarren/selene into exh…
Browse files Browse the repository at this point in the history
…austive-deps
  • Loading branch information
chriscerie committed Jan 7, 2024
2 parents ca83993 + 5637bc4 commit 2fc923e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions selene-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ If you want to stay up to date with selene itself, you can find the changelog in

## Unreleased

## [1.5.1]
- selene now works with the Luau language ID.

## [1.5.0]
- Added `update-roblox-std` and `generate-roblox-std` subcommands to vscode command palette
- Added error reporting for configuration files, both for selene.toml and for YML standard libraries.
Expand Down
4 changes: 2 additions & 2 deletions selene-vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion selene-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "selene-vscode",
"displayName": "Selene",
"description": "A blazing-fast modern Lua linter written in Rust",
"version": "1.5.0",
"version": "1.5.1",
"publisher": "Kampfkarren",
"repository": "https://github.com/Kampfkarren/selene",
"engines": {
Expand All @@ -13,6 +13,7 @@
],
"activationEvents": [
"onLanguage:lua",
"onLanguage:luau",
"workspaceContains:selene.toml",
"onCommand:selene.reinstall",
"onCommand:selene.update-roblox-std",
Expand Down
1 change: 1 addition & 0 deletions selene-vscode/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ export async function activate(

switch (document.languageId) {
case "lua":
case "luau":
break
case "toml":
case "yaml":
Expand Down

0 comments on commit 2fc923e

Please sign in to comment.