Skip to content

Commit

Permalink
fix: support codelenses on instance main method
Browse files Browse the repository at this point in the history
Signed-off-by: Fred Bricon <fbricon@gmail.com>
  • Loading branch information
fbricon committed Sep 19, 2024
1 parent 7d50a18 commit 626107c
Show file tree
Hide file tree
Showing 12 changed files with 1,005 additions and 761 deletions.
24 changes: 0 additions & 24 deletions .eslintrc.json

This file was deleted.

3 changes: 3 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
node_modules/**
.vscode-test/**
src/**
test/**
out/test/**
.gitignore
.yarnrc
vsc-extension-quickstart.md
Expand All @@ -15,3 +17,4 @@ package.insiders.json
scripts/
.github/
renovate.json
eslint.config.mjs
25 changes: 25 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/* eslint-disable @typescript-eslint/naming-convention */
import typescriptEslint from "@typescript-eslint/eslint-plugin";
import tsParser from "@typescript-eslint/parser";

export default [{
ignores: ["out/", "dist/", "**/*.d.ts", "node_modules/"],
}, {
plugins: {
"@typescript-eslint": typescriptEslint,
},

languageOptions: {
parser: tsParser,
ecmaVersion: 6,
sourceType: "module",
},

rules: {
"@typescript-eslint/naming-convention": "warn",
curly: "warn",
eqeqeq: "warn",
"no-throw-literal": "warn",
semi: "off",
},
}];
Loading

0 comments on commit 626107c

Please sign in to comment.