-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
4ad2857
commit ead834d
Showing
33 changed files
with
2,714 additions
and
3,721 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } ] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ client/server | |
node_modules | ||
out | ||
.DS_Store | ||
.vscode-test | ||
|
||
# local env files | ||
.env.local | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.