Skip to content

Commit 87e08ea

Browse files
authored
Merge pull request #180 from bollwyvl/repo-reorg
reduce number of top-level files
2 parents 89c7e96 + 111d56f commit 87e08ea

File tree

27 files changed

+30
-28
lines changed

27 files changed

+30
-28
lines changed

.prettierrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ matrix:
1717
language: shell
1818

1919
before_install:
20-
- python3 -m pip install -r requirements-utest.txt
20+
- python3 -m pip install -r requirements/utest.txt
2121
- python3 -m pip freeze
2222
- python3 setup.py sdist
2323
- python3 setup.py bdist_wheel

CONTRIBUTING.md

Lines changed: 5 additions & 5 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

@@ -37,7 +37,7 @@ for development.
3737
conda env update -n jupyterlab-lsp # create a conda env
3838
source activate jupyterlab-lsp # activate it
3939
# or...
40-
pip install -r requirements-dev.txt # in a virtualenv, probably
40+
pip install -r requirements/dev.txt # in a virtualenv, probably
4141
# ... and install nodejs, somehow
4242
```
4343

@@ -135,9 +135,9 @@ First, ensure you've prepared JupyterLab for `jupyterlab-lsp`
135135
Prepare the enviroment:
136136

137137
```bash
138-
conda env update -n jupyterlab-lsp --file environment-atest.yml
138+
conda env update -n jupyterlab-lsp --file requirements/atest.yml
139139
# or
140-
pip install -r requirements-atest.txt # ... and install geckodriver, somehow
140+
pip install -r requirements/atest.txt # ... and install geckodriver, somehow
141141
apt-get install firefox-geckodriver # ... e.g. on debian/ubuntu
142142
```
143143

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](./docs/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

File renamed without changes.
File renamed without changes.

ci/job.lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ parameters:
77
- name: ThreeSeven
88
spec: '>=3.7,<3.8.0a0'
99
env_update: conda env update -n jupyterlab-lsp --file env-test.yml --quiet
10-
env_lint: conda env update -n jupyterlab-lsp --file environment-lint.yml --quiet
10+
env_lint: conda env update -n jupyterlab-lsp --file requirements/lint.yml --quiet
1111

1212
jobs:
1313
- ${{ each platform in parameters.platforms }}:

EXTENDING.md renamed to 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

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)