Skip to content

Commit

Permalink
v2.1.2 (#135)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
itsxallwater and Peter Schellenbach authored Jan 19, 2021
1 parent 4ad2857 commit ead834d
Show file tree
Hide file tree
Showing 33 changed files with 2,714 additions and 3,721 deletions.
10 changes: 10 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
node_modules/**
client/node_modules/**
client/out/**
doc/**
gateway/**
images/**
server/node_modules/**
server/out/**
Syntaxes/**
tests/**
20 changes: 20 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/**@type {import('eslint').Linter.Config} */
// eslint-disable-next-line no-undef
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
'semi': [2, "always"],
'@typescript-eslint/no-unused-vars': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-non-null-assertion': 0,
}
};
18 changes: 18 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"semi": "error",
"no-extra-semi": "warn",
"curly": "warn",
"quotes": ["error", "single", { "allowTemplateLiterals": true } ],
"eqeqeq": "error",
"indent": ["warn", "tab", { "SwitchCase": 1 } ]
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ client/server
node_modules
out
.DS_Store
.vscode-test

# local env files
.env.local
Expand Down
12 changes: 12 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@
"sourceMaps": true,
"restart": true,
"outFiles": ["${workspaceFolder}/server/out/**/*.js"]
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--disable-extension",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": ["${workspaceFolder}/out/test/**/*.js"]
}
// ,
// {
Expand Down
15 changes: 15 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
.vscode/**
.vscode-test/**
**/*.ts
**/*.map
**/.eslintignore
**/.gitignore
**/.markdownlint.json
**/.vscodeignore
**/package-lock.json
**/tsconfig.json
**/tsconfig.base.json
contributing.md
.travis.yml
client/src/
client/src/test/
client/testFixture/
!file.ts
**/*.vsix
**/*.docx
doc/
tests/
scripts/
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,9 @@
- Variables from a `FOR ... TO`
- Variables from a `EQU ... TO`
- Variables from a `EQUATE ... TO`

### 2.1.2

- Bug fixes and performance enhancements to the AccuTerm connector (#133)
- Package dependency updates
- Light refactoring to match latest Microsoft sample language server code
6 changes: 0 additions & 6 deletions client/.vscodeignore

This file was deleted.

Loading

0 comments on commit ead834d

Please sign in to comment.