-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Upstream.docs branch (#23) for
snippets/*.json
files
* feat: added src/utils/snippets.ts and snippets/*.json files * chore: added test-data/snippets.test.ts * chore: added config.ts and many other files for building snippets/*.json * feat: changes to project config (good refactors, but still WIP) - `fish-lsp complete` removed bare command - updated configHandlers to use zod - updataed fish_lsp_* env variables * feat: added cli support for env variables for lsp - added flags '-c'/'--create' && '-s'/'--show' * chore: added 'snippets/*.{input,py}' and 'snippets/inputs' to .gitignore * chore: minor changes + `config` moved to global scope * docs: updated manpage * chore: removed show&tell discussion from README * docs: added mermaid to readme * Docs: Add @ndonfris as a contributor * chore: updated README w/ contributors * chore: REMOVED EXECUTABLE PRIVILEGES. Updated snippets, and jest files. - removed executable privileges from files that don't need to be executed ('src/**.ts', and 'scripts/*.fish') - `chmod -x src/**.ts && chmod -x scripts/*.fish` - snippets had major changes (BOTH 'snippets/*.json', 'test-data/snippets.test.ts' & 'src/utils/snippets.ts') - src/utils/snipptes.ts now has a map for storing prebuilt documentation - test-data/snippets.test.ts now tests the new prebuilt documentation - snippets/*.json had deprecated files removed - snippets/*.json had formatting fixes - jest.config.js - Removed commented out code in - Added 'use strict;' in jest.config.js * feat: added simple diagnostics back for variables built by snippets/*.json - needs testing before included in master - uses snippets/*.json and needs improving in src/server.ts * feat: added fish_lsp_{enable,disable}_handler support in src/server.ts * docs: README.md formatting & structure changes * feat: workspaces working with config * feat: added modifiable workspaces to workspace handler * chore: fixed MAN_FILE.md and docs/man/fish-lsp.1 * feat: fixed non startupCache function resolver documentation - now matches startupCache function markdown/documentation better * docs: updated README.md, docs/{CONTRIBUTING,ROADMAP}.md * fix: update {tsconfig,package}.json with additional directories and files Why: The package.json file needed to be updated to include additional directories and files for better organization and functionality. Error become known from .github/workflow/eslint.yml failure Changes: - Added directories key with man and bin paths - Added files key with src, snippets, package.json paths - src/features/fix-all.ts had some ssall changes that probably need to be reverted, although fix-all & code-actions are not currently attached to the server.ts file * breaking: new actions * fix: snippets moved to src/snippets
- Loading branch information
Showing
127 changed files
with
2,731 additions
and
1,237 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
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
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,36 @@ | ||
name: TypeScript Node CI | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
ci: | ||
name: Lint Codebase | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
security-events: write | ||
actions: read | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Fish Shell | ||
uses: fish-actions/install-fish@v1.1.0 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 21.7.1 | ||
|
||
- name: Install Yarn | ||
run: npm install -g yarn@1.22.22 | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
- name: Run Lint | ||
run: yarn lint |
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 |
---|---|---|
|
@@ -12,4 +12,6 @@ wikis | |
out.png | ||
.vim | ||
test-data/staging | ||
build | ||
build | ||
!snippets/*.json | ||
snippets/* |
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
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
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
Oops, something went wrong.