Skip to content

Commit 7569778

Browse files
committed
fix up integrity, some internal links
1 parent f009245 commit 7569778

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed
File renamed without changes.

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ You can contribute to the project through:
1313
and its various distributions
1414
- these are great first issues, as you might not need to know any python or
1515
javascript
16-
- proposing parts of the architecture that can be [extended](./EXTENDING.md)
16+
- proposing parts of the architecture that can be [extended](./docs/EXTENDING.md)
1717
- improving [documentation](#Documentation)
18-
- tackling Big Issues from the [future roadmap](./ROADMAP.md)
18+
- tackling Big Issues from the [future roadmap](./docs/ROADMAP.md)
1919
- improving [testing](#Testing)
2020
- reviewing pull requests
2121

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
> _This project is still maturing, but you are welcome to check it out, leave feedback and/or a PR_
66
7-
Quick Links: **[Installation](#installation) | [Language Servers](./LANGUAGESERVERS.md) | [Updating](#updating) | [Changelog](./CHANGELOG.md) | [Roadmap](./ROADMAP.md) | [Contributing](./CONTRIBUTING.md) | [Extending](./EXTENDING.md)**
7+
Quick Links: **[Installation](#installation) | [Language Servers](./docs/LANGUAGESERVERS.md) | [Updating](#updating) | [Changelog](./CHANGELOG.md) | [Roadmap](./ROADMAP.md) | [Contributing](./CONTRIBUTING.md) | [Extending](./docs/EXTENDING.md)**
88

99
## Features
1010

11-
> Examples show Python code, but most features also work in R, bash, typescript and [many other languages](./LANGUAGESERVERS.md).
11+
> Examples show Python code, but most features also work in R, bash, typescript and [many other languages](./docs/LANGUAGESERVERS.md).
1212
1313
### Hover
1414

@@ -113,7 +113,7 @@ For the current stable version:
113113
```
114114

115115
Please see our full list of
116-
[supported language servers](./LANGUAGESERVERS.md)
116+
[supported language servers](./docs/LANGUAGESERVERS.md)
117117
which includes installation hints for the common package managers (npm/pip/conda).
118118
In general, any LSP server from the
119119
[Microsoft list](https://microsoft.github.io/language-server-protocol/implementors/servers/)
@@ -158,7 +158,7 @@ jupyter labextension install @krassowski/[email protected]
158158

159159
### Configuring the servers
160160

161-
We plan to provide a configuration GUI at some time ([#25](https://github.com/krassowski/jupyterlab-lsp/issues/25)), but in the meantime, you can use the instructions for the specific servers as described on their websites (see the table in [LANGUAGESERVERS.md](./LANGUAGESERVERS.md) for links).
161+
We plan to provide a configuration GUI at some time ([#25](https://github.com/krassowski/jupyterlab-lsp/issues/25)), but in the meantime, you can use the instructions for the specific servers as described on their websites (see the table in [LANGUAGESERVERS.md](./docs/LANGUAGESERVERS.md) for links).
162162

163163
#### I want to hide specific diagnostics/inspections/warnings
164164

docs/EXTENDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Language Server Specs can be [configured](./LANGUAGESERVERS.ms) by Jupyter users,
1414
or distributed by third parties as python or JSON files. Since we'd like to see
1515
as many Language Servers work out of the box as possible, consider
16-
[contributing a spec](./CONTRIBUTING.md#specs), if it works well for you!
16+
[contributing a spec](../CONTRIBUTING.md#specs), if it works well for you!
1717

1818
### Message Listeners
1919

packages/jupyterlab-lsp/src/adapters/jupyterlab/components/statusbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ class LSPPopup extends VDomRenderer<LSPStatus.Model> {
211211
Documentation:{' '}
212212
<a
213213
href={
214-
'https://github.com/krassowski/jupyterlab-lsp/blob/master/LANGUAGESERVERS.md'
214+
'https://github.com/krassowski/jupyterlab-lsp/blob/master/docs/LANGUAGESERVERS.md'
215215
}
216216
target={'_blank'}
217217
>

py_src/jupyter_lsp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Multi-[Language Server][language-server] WebSocket proxy for your Jupyter
1010
# Language Servers
1111

1212
`jupyter-lsp` does not come with any Language Servers! Learn more about installing
13-
and configuring [language servers](../../LANGUAGESERVERS.md)
13+
and configuring [language servers](../../docs/LANGUAGESERVERS.md)
1414

1515
[language-server]: https://microsoft.github.io/language-server-protocol/specification
1616
[langserver]: https://langserver.org

scripts/integrity.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@
2121

2222
ROOT = pathlib.Path.cwd()
2323
REQS = ROOT / "requirements"
24+
BINDER = ROOT / "binder"
2425

2526
# docs
2627
MAIN_README = ROOT / "README.md"
2728
CHANGELOG = ROOT / "CHANGELOG.md"
2829

2930
# dependencies
30-
ENV = yaml.safe_load((ROOT / "environment.yml").read_text())
31+
ENV = yaml.safe_load((BINDER / "environment.yml").read_text())
3132
LAB_SPEC = [
3233
d.split(" ", 1)[1]
3334
for d in ENV["dependencies"]
@@ -121,7 +122,7 @@ def test_ts_package_integrity(name, info, the_meta_package):
121122

122123

123124
@pytest.mark.parametrize(
124-
"path", map(str, [REQS, "lab.txt", CI / "job.test.yml", MAIN_README])
125+
"path", map(str, [REQS / "lab.txt", CI / "job.test.yml", MAIN_README])
125126
)
126127
def test_jlab_versions(path):
127128
""" is the version of jupyterlab consistent?

0 commit comments

Comments
 (0)