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

Realign features with JSON Language Server #147

Merged
merged 31 commits into from
May 31, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e16256c
Features working with duplicated files
JPinkney May 25, 2019
a0b61e5
Deferring document symbols to json language server
JPinkney May 25, 2019
29e6a21
Document symbols successfully passing tests
JPinkney May 25, 2019
1beb482
Hover working with tests and removal of schemaSequence property
JPinkney May 26, 2019
1232a44
Commented irrelevant tests
JPinkney May 26, 2019
03356fb
Working on validation
JPinkney May 26, 2019
5c30ab2
Adding tslint
JPinkney May 27, 2019
4e3529e
Applied initial tslint rules to utils
JPinkney May 27, 2019
882a51b
Defer fixes of tslint in src/** and test/** until later
JPinkney May 27, 2019
db3e675
Removed unneeded jsonSchemaService2
JPinkney May 27, 2019
0908a24
Renamed files, added formatter registration, added hierarchial docume…
JPinkney May 27, 2019
c3798d4
Removed JSONWorkerContributions
JPinkney May 27, 2019
24484ee
Removed more JSONWorkerContributions
JPinkney May 27, 2019
55f89e6
Renamed parsers to yamlParser04 and yamlParser07
JPinkney May 27, 2019
c72ceb6
Fixed schemaValidation.test.ts
JPinkney May 27, 2019
e43a07e
Updated hover test
JPinkney May 27, 2019
7690d4e
Update formatter
JPinkney May 27, 2019
7324652
Updated document symbols tests
JPinkney May 27, 2019
09efb25
Updated/Removed packages
JPinkney May 27, 2019
f91b1d0
Finished hierarchial document symbol tests
JPinkney May 28, 2019
841180e
Ran tslint on the tests
JPinkney May 28, 2019
5649138
Applied tslint rules to everything
JPinkney May 28, 2019
05f49af
Added tests for JSON Schema 7
JPinkney May 28, 2019
f5c6492
Merged from master
JPinkney May 28, 2019
d7cad4b
Fixed tests
JPinkney May 28, 2019
4027ae9
Commented tests that are known issues
JPinkney May 28, 2019
9af0389
Allow custom tag completion outside of schema
JPinkney May 28, 2019
b41e6f9
Added strict flag
JPinkney May 28, 2019
ace16fc
Fix for formatter registration
JPinkney May 28, 2019
4b2f792
Edit readme to show supporting JSON Schema 7 and below.
JPinkney May 28, 2019
39e800c
Allow JSON Schemas to be set dynamically
JPinkney May 31, 2019
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
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Tab indentation
[*]
indent_style = tab
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
trim_trailing_whitespace = false

[{.travis.yml,npm-shrinkwrap.json,package.json}]
indent_style = space
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# YAML Language Server

Supports JSON Schema 7 and below.

## Features

1. YAML validation:
Expand Down
Loading