Skip to content

Commit

Permalink
feat(vscode): inital vscode extension
Browse files Browse the repository at this point in the history
  • Loading branch information
qvalentin committed Dec 22, 2023
1 parent 14a9370 commit 1b1abbe
Show file tree
Hide file tree
Showing 14 changed files with 4,321 additions and 0 deletions.
30 changes: 30 additions & 0 deletions clients/vscode/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/naming-convention": [
"warn",
{
"selector": "import",
"format": [ "camelCase", "PascalCase" ]
}
],
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts"
]
}
6 changes: 6 additions & 0 deletions clients/vscode/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
out
dist
node_modules
.vscode-test/
*.vsix
.vscode
5 changes: 5 additions & 0 deletions clients/vscode/.vscode-test.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { defineConfig } from '@vscode/test-cli';

export default defineConfig({
files: 'out/test/**/*.test.js',
});
14 changes: 14 additions & 0 deletions clients/vscode/.vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.vscode/**
.vscode-test/**
out/**
node_modules/**
src/**
.gitignore
.yarnrc
webpack.config.js
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
**/.vscode-test.*
11 changes: 11 additions & 0 deletions clients/vscode/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# VScode extension for helm-ls

## Requirements

If you have any requirements or dependencies, add a section describing those and how to install and configure them.

## Extension Settings

You need a `helm_ls` executable on your `PATH` to use this extension.
The kubernetes extension is also required to use this extension.

Loading

0 comments on commit 1b1abbe

Please sign in to comment.