Skip to content

Commit ead834d

Browse files
itsxallwaterPeter Schellenbach
andauthored
v2.1.2 (#135)
* Fixed problem with REST FS refreshing the file list. Updated extension guide with links to latest version. * Updating to current lsp sample from microsoft - add eslint - bump packages - update ts configs - add e2e test script * package updates * adding e2e tests! * Refactor server.ts to match latest ms example * More cleanup - package updates - vscodeignore updates - webpack updates * update language client to ver 7 * update language server to ver 7 * pivot restfs from requires to imports * v2.1.2 Co-authored-by: Peter Schellenbach <petes@zumasys.com>
1 parent 4ad2857 commit ead834d

33 files changed

+2714
-3721
lines changed

.eslintignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
node_modules/**
2+
client/node_modules/**
3+
client/out/**
4+
doc/**
5+
gateway/**
6+
images/**
7+
server/node_modules/**
8+
server/out/**
9+
Syntaxes/**
10+
tests/**

.eslintrc.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**@type {import('eslint').Linter.Config} */
2+
// eslint-disable-next-line no-undef
3+
module.exports = {
4+
root: true,
5+
parser: '@typescript-eslint/parser',
6+
plugins: [
7+
'@typescript-eslint',
8+
],
9+
extends: [
10+
'eslint:recommended',
11+
'plugin:@typescript-eslint/recommended',
12+
],
13+
rules: {
14+
'semi': [2, "always"],
15+
'@typescript-eslint/no-unused-vars': 0,
16+
'@typescript-eslint/no-explicit-any': 0,
17+
'@typescript-eslint/explicit-module-boundary-types': 0,
18+
'@typescript-eslint/no-non-null-assertion': 0,
19+
}
20+
};

.eslintrc.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"parserOptions": {
4+
"ecmaVersion": 6,
5+
"sourceType": "module"
6+
},
7+
"env": {
8+
"node": true
9+
},
10+
"rules": {
11+
"semi": "error",
12+
"no-extra-semi": "warn",
13+
"curly": "warn",
14+
"quotes": ["error", "single", { "allowTemplateLiterals": true } ],
15+
"eqeqeq": "error",
16+
"indent": ["warn", "tab", { "SwitchCase": 1 } ]
17+
}
18+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ client/server
22
node_modules
33
out
44
.DS_Store
5+
.vscode-test
56

67
# local env files
78
.env.local

.vscode/launch.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@
2323
"sourceMaps": true,
2424
"restart": true,
2525
"outFiles": ["${workspaceFolder}/server/out/**/*.js"]
26+
},
27+
{
28+
"name": "Extension Tests",
29+
"type": "extensionHost",
30+
"request": "launch",
31+
"runtimeExecutable": "${execPath}",
32+
"args": [
33+
"--disable-extension",
34+
"--extensionDevelopmentPath=${workspaceFolder}",
35+
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
36+
],
37+
"outFiles": ["${workspaceFolder}/out/test/**/*.js"]
2638
}
2739
// ,
2840
// {

.vscodeignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1+
.vscode/**
2+
.vscode-test/**
13
**/*.ts
4+
**/*.map
5+
**/.eslintignore
6+
**/.gitignore
7+
**/.markdownlint.json
8+
**/.vscodeignore
9+
**/package-lock.json
210
**/tsconfig.json
11+
**/tsconfig.base.json
12+
contributing.md
13+
.travis.yml
14+
client/src/
15+
client/src/test/
16+
client/testFixture/
317
!file.ts
418
**/*.vsix
519
**/*.docx
620
doc/
721
tests/
22+
scripts/

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,9 @@
8383
- Variables from a `FOR ... TO`
8484
- Variables from a `EQU ... TO`
8585
- Variables from a `EQUATE ... TO`
86+
87+
### 2.1.2
88+
89+
- Bug fixes and performance enhancements to the AccuTerm connector (#133)
90+
- Package dependency updates
91+
- Light refactoring to match latest Microsoft sample language server code

client/.vscodeignore

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

0 commit comments

Comments
 (0)