Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
Squashed 'jupyterlab/' content from commit eed237762
Browse files Browse the repository at this point in the history
git-subtree-dir: jupyterlab
git-subtree-split: eed237762ea9b70519f85eb05467213884f57285
  • Loading branch information
saulshanabrook committed Mar 21, 2019
0 parents commit c5ff9bf
Show file tree
Hide file tree
Showing 1,382 changed files with 337,534 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .eslintignore
@@ -0,0 +1,22 @@
node_modules
**/node_modules
**/lib
**/build
**/static
jupyterlab/schemas
jupyterlab/themes
jupyterlab/geckodriver
jupyterlab/staging/yarn.js
jupyterlab/chrome-test.js
jupyterlab/staging/index.js
dev_mode/index.js
dev_mode/schemas
dev_mode/static
dev_mode/themes
dev_mode/workspaces
examples/app/build
examples/app/themes
examples/app/schemas
tests/**/coverage
docs/_build
docs/api
23 changes: 23 additions & 0 deletions .eslintrc
@@ -0,0 +1,23 @@
{
"env": {
"browser": true,
"node": true,
"commonjs": true
},
"extends": ["eslint:recommended", "prettier"],
"plugins": ["prettier"],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"modules": true,
"jsx": true
}
},
"rules": {
"prettier/prettier": ["error", { "singleQuote": true }],
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"no-console": ["error", { "allow": ["warn", "error"] }]
}
}
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
jupyterlab/staging/yarn.js binary
58 changes: 58 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,58 @@
---
name: Bug report
about: Create a report to help us improve
---

Hi! Thanks for using JupyterLab.

If you are reporting an issue with JupyterLab, please use the [GitHub issue](https://github.com/jupyterlab/jupyterlab/issues) search feature to check if your issue has been asked already. If it has, please add your comments to the existing issue.

The JupyterLab team and Project Jupyter value our community, and JupyterLab
follows the Jupyter [Community Guides](https://jupyter.readthedocs.io/en/latest/community/content-community.html).

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**

- OS: [e.g. Windows 10]
- Browser [e.g. chrome 69.0, firefox 62.0]
- JupyterLab [e.g. 0.34.2]

**Additional context**
Add any other context about the problem here.

If available, please include the following details:

<details><summary>Troubleshoot Output</summary>
<pre>
Paste the output from running `jupyter troubleshoot` from the command line here.
You may want to sanitize the paths in the output.
</pre>
</details>

<details><summary>Command Line Output</summary>
<pre>
Paste the output from your command line running `jupyter lab` here, use `--debug` if possible.
</pre>
</details>

<details><summary>Browser Output</summary>
<pre>
Paste the output from your browser console here.
</pre>
</details>
@@ -0,0 +1,6 @@
---
name: Installation and configuration issues
about: Installation and configuration assistance
---

If you are having issues with installation or configuration, we encourage you to post in the [Jupyter Discourse forum](https://discourse.jupyter.org/c/jupyterlab) or file an issue here.
4 changes: 4 additions & 0 deletions .github/pull_request_template.md
@@ -0,0 +1,4 @@
Fixes #

**Screenshots**
If applicable, add before and after screenshots to help show the issue being fixed, or the appearance of a new feature.
48 changes: 48 additions & 0 deletions .gitignore
@@ -0,0 +1,48 @@
MANIFEST
build
dist
lib
jupyterlab/static
jupyterlab/schemas
jupyterlab/themes
jupyterlab/geckodriver
dev_mode/schemas
dev_mode/static
dev_mode/themes
dev_mode/workspaces
dev_mode/stats.json

packages/theme-*/static
node_modules
.cache
.vscode
*.py[co]
.pytest_cache
__pycache__
*.egg-info
*~
*.bak
.ipynb_checkpoints
.DS_Store
\#*#
.#*

*.swp
*.map
.idea/

coverage/
tests/**/coverage
tests/**/.cache-loader
docs/_build
docs/api
docs/source/_build
packages/services/examples/node/config.json
examples/app/build
examples/app/themes
examples/app/schemas

lerna-debug.log
yarn-error.log

junit.xml
8 changes: 8 additions & 0 deletions .lintstagedrc
@@ -0,0 +1,8 @@
{
"linters": {
"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
}
}
6 changes: 6 additions & 0 deletions .meeseeksdev.yml
@@ -0,0 +1,6 @@
special:
everyone:
can:
- say
- tag
- untag
22 changes: 22 additions & 0 deletions .prettierignore
@@ -0,0 +1,22 @@
node_modules
**/node_modules
**/lib
**/build
**/static
jupyterlab/schemas
jupyterlab/themes
jupyterlab/geckodriver
jupyterlab/staging/yarn.js
jupyterlab/staging/index.js
dev_mode/index.js
dev_mode/schemas
dev_mode/static
dev_mode/themes
dev_mode/workspaces
examples/app/build
examples/app/themes
examples/app/schemas
tests/**/coverage
docs/_build
docs/api
**/package.json
3 changes: 3 additions & 0 deletions .prettierrc
@@ -0,0 +1,3 @@
{
"singleQuote": true
}
2 changes: 2 additions & 0 deletions .yarnrc
@@ -0,0 +1,2 @@
yarn-path "./jupyterlab/staging/yarn.js"
ignore-optional true

0 comments on commit c5ff9bf

Please sign in to comment.