Skip to content

Commit d1bf446

Browse files
authored
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
1 parent b4de59b commit d1bf446

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+11326
-3130
lines changed

.eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/**
2+
third-party
3+
**/*.json
4+
dist
5+
out

.eslintrc.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = {
2+
root: true,
3+
parser: "@typescript-eslint/parser",
4+
parserOptions: {
5+
project: ["./tsconfig.json", "./tsconfig.eslint.json"],
6+
tsconfigRootDir: __dirname,
7+
},
8+
plugins: ["@typescript-eslint"],
9+
extends: ["airbnb-base", "airbnb-typescript/base", "prettier"],
10+
rules: {
11+
"import/prefer-default-export": "off",
12+
"no-restricted-syntax": "off",
13+
"class-methods-use-this": "off", // https://github.com/airbnb/javascript#classes--methods-use-this
14+
"no-underscore-dangle": "off", // we allow use `_`: this._privateMethod = ...;
15+
},
16+
};

0 commit comments

Comments
 (0)