Skip to content

Commit 7602589

Browse files
committed
Update logo, drop OpenAI completion, and update dependencies
1 parent 50bd413 commit 7602589

File tree

10 files changed

+5461
-4716
lines changed

10 files changed

+5461
-4716
lines changed

.claude/settings.local.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(npm install)",
5+
"Bash(npm run compile:*)",
6+
"Bash(npm outdated:*)",
7+
"Bash(npm install:*)",
8+
"Bash(git pull:*)",
9+
"Bash(git stash:*)",
10+
"Bash(git stash pop:*)",
11+
"Bash(git merge:*)",
12+
"Bash(rm:*)",
13+
"Bash(npm run lint:*)",
14+
"Bash(git add:*)",
15+
"Bash(git commit:*)",
16+
"Bash(git push:*)"
17+
]
18+
}
19+
}

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/build-ext.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Use Node.js
1515
uses: actions/setup-node@v4
1616
with:
17-
node-version: "16.x"
17+
node-version: "20.x"
1818

1919
- name: Install dependencies
2020
run: npm ci

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ tags:
2929
The MQL extension for Visual Studio code provides validation and completion capabilities
3030
3131
- Syntax highlighting
32-
- ChatGPT based completion for line comments (requires `openAIKey` in settings)
3332
- Autocompletion (if the Language Server is enabled)
3433
- Validation of functions and types (if the Language Server is enabled)
3534
- Diagnostic hints, warnings, and errors (if the Language Server is enabled)

eslint.config.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
const tseslint = require('typescript-eslint');
2+
3+
module.exports = [
4+
{
5+
ignores: ['node_modules/**', 'out/**']
6+
},
7+
...tseslint.configs.recommended,
8+
{
9+
files: ['**/*.ts', '**/*.tsx'],
10+
languageOptions: {
11+
parser: tseslint.parser,
12+
parserOptions: {
13+
project: true,
14+
},
15+
},
16+
plugins: {
17+
'@typescript-eslint': tseslint.plugin,
18+
},
19+
rules: {
20+
'semi': [2, 'always'],
21+
'@typescript-eslint/no-unused-vars': 0,
22+
'@typescript-eslint/no-explicit-any': 0,
23+
'@typescript-eslint/explicit-module-boundary-types': 0,
24+
'@typescript-eslint/no-non-null-assertion': 0,
25+
}
26+
}
27+
];

icon.png

4.93 KB
Loading

0 commit comments

Comments
 (0)