Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hover action to view symbol info #230

Merged
merged 8 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,16 @@ to learn about each component.
The following will be a brief introduction into the project and how it works.
But it's always better to consult the code to see what exactly is going on.


### Developing Extension

1. Open vscode
2. Navigate to Run and Debug tab
3. Select "Launch Client" and run the app

By default the extension uses `enderpy-lsp` command to run the language server.
To change it set the `SERVER_PATH` env variable to custom executable.

### Core Concepts

The project consist of multiple crates each are separately published to crates.io:
Expand Down
1 change: 1 addition & 0 deletions client/vscode/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/**
20 changes: 20 additions & 0 deletions client/vscode/.eslintrc.js
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,
}
};
Loading
Loading