Skip to content

Commit

Permalink
Merge branch 'main' of https://vthg2themax@github.com/rust-sailfish/s…
Browse files Browse the repository at this point in the history
…ailfish.git

Conflicts:
	syntax/vscode/.gitignore
	syntax/vscode/package-lock.json
	syntax/vscode/package.json
  • Loading branch information
vthg2themax committed Oct 8, 2024
2 parents c386c64 + 6d8339f commit 39b2423
Show file tree
Hide file tree
Showing 5 changed files with 408 additions and 158 deletions.
11 changes: 11 additions & 0 deletions syntax/vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,14 @@ The extension is available at [VisualStudio Marketplace](https://marketplace.vis
## Screenshots

![screenshot](https://github.com/rust-sailfish/sailfish/blob/main/syntax/vscode/screenshot.png?raw=true)

## Developer Instructions
1. Open the /sailfish/syntax/vscode/ directory in VS Code.
2. Run the following commands:
`sudo apt install nodejs`
`npm install typescript --save-dev`
`npm install @eslint/js -D`
`npm install typescript-eslint -D`
`npm install -g @vscode/vsce`
`vsce login rust-sailfish`
`vsce publish`
11 changes: 11 additions & 0 deletions syntax/vscode/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";


export default [
{files: ["**/*.{js,mjs,cjs,ts}"]},
{languageOptions: { globals: globals.browser }},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
];
Loading

0 comments on commit 39b2423

Please sign in to comment.