Skip to content

Commit

Permalink
Do not reexport code of imported libraries (e.g. vscode-languageclient)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisalmen committed Feb 9, 2023
1 parent 20d8313 commit 34de910
Show file tree
Hide file tree
Showing 37 changed files with 2,181 additions and 11,832 deletions.
9 changes: 5 additions & 4 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
const path = require('path');
const headerDef = path.resolve(__dirname, './packages/config/header.js');
const headerDef = path.resolve(__dirname, './config/header.js');

module.exports = {
env: {
node: true,
browser: true,
es2020: true
es2022: true
},
extends: 'standard',
globals: {
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: '2020',
ecmaVersion: '2022',
sourceType: 'module',
project: './tsconfig.json'
},
Expand Down Expand Up @@ -51,8 +52,8 @@ module.exports = {
}]
},
ignorePatterns: [
'**/{node_modules,dist,lib,out,bin}',
'.eslintrc.js',
'vite.config.ts',
'packages/examples/browser-lsp/src/serverWorker.ts'
]
};
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
"[json]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "vscode.json-language-features"
}
},
"angular.enable-strict-mode-prompt": false
}
File renamed without changes.
Loading

0 comments on commit 34de910

Please sign in to comment.