-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adding ACDL language server to ASK Toolkit for VS Code (#237)
* feat: adding ACDL language support to the extension * fix: definition test correction, README typo corrections, temporarily disabling some tests related to VSCode 1.73 upgrade
- Loading branch information
1 parent
b4de59b
commit d1bf446
Showing
44 changed files
with
11,326 additions
and
3,130 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,5 @@ | ||
node_modules/** | ||
third-party | ||
**/*.json | ||
dist | ||
out |
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,16 @@ | ||
module.exports = { | ||
root: true, | ||
parser: "@typescript-eslint/parser", | ||
parserOptions: { | ||
project: ["./tsconfig.json", "./tsconfig.eslint.json"], | ||
tsconfigRootDir: __dirname, | ||
}, | ||
plugins: ["@typescript-eslint"], | ||
extends: ["airbnb-base", "airbnb-typescript/base", "prettier"], | ||
rules: { | ||
"import/prefer-default-export": "off", | ||
"no-restricted-syntax": "off", | ||
"class-methods-use-this": "off", // https://github.com/airbnb/javascript#classes--methods-use-this | ||
"no-underscore-dangle": "off", // we allow use `_`: this._privateMethod = ...; | ||
}, | ||
}; |
Oops, something went wrong.