Skip to content

Commit

Permalink
Update boilerplate and dependencies (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
giovdk21 authored Dec 8, 2024
1 parent e63ed70 commit b6eb0f3
Show file tree
Hide file tree
Showing 8 changed files with 1,990 additions and 1,184 deletions.
5 changes: 5 additions & 0 deletions .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',
});
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [1.4.1] - 2024-12-08

- Extension boilerplate and dependencies updates

## [1.4.0] - 2023-08-06

- The status bar item can now be positioned to the left (see settings; requires restart)
Expand Down
28 changes: 28 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import typescriptEslint from "@typescript-eslint/eslint-plugin";
import tsParser from "@typescript-eslint/parser";

export default [{
files: ["**/*.ts"],
}, {
plugins: {
"@typescript-eslint": typescriptEslint,
},

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

rules: {
"@typescript-eslint/naming-convention": ["warn", {
selector: "import",
format: ["camelCase", "PascalCase"],
}],

curly: "warn",
eqeqeq: "warn",
"no-throw-literal": "warn",
semi: "warn",
},
}];
Loading

0 comments on commit b6eb0f3

Please sign in to comment.