Skip to content

Commit

Permalink
feat: adding ACDL language server to ASK Toolkit for VS Code (#237)
Browse files Browse the repository at this point in the history
* 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
tydonelson authored Mar 20, 2023
1 parent b4de59b commit d1bf446
Show file tree
Hide file tree
Showing 44 changed files with 11,326 additions and 3,130 deletions.
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/**
third-party
**/*.json
dist
out
16 changes: 16 additions & 0 deletions .eslintrc.js
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 = ...;
},
};
Loading

0 comments on commit d1bf446

Please sign in to comment.