Skip to content

Commit cb84e13

Browse files
authored
JupyterLab 4 support (#158)
1 parent bdd8fe9 commit cb84e13

File tree

315 files changed

+3882
-16043
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

315 files changed

+3882
-16043
lines changed

.eslintignore

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

.eslintrc.js

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

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "npm"
4-
directory: "/"
3+
- package-ecosystem: 'npm'
4+
directory: '/'
55
schedule:
6-
interval: "daily"
6+
interval: 'daily'
77
# Always increase the version requirement
88
# to match the new version.
99
versioning-strategy: increase

.gitignore

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
spark-warehouse
2-
venv
31
*.bundle.*
42
lib/
53
node_modules/
@@ -8,16 +6,11 @@ node_modules/
86
.stylelintcache
97
*.egg-info/
108
.ipynb_checkpoints
11-
.virtual_documents
129
*.tsbuildinfo
1310
jupyterlab_sql_editor/labextension
1411
# Version file is handled by hatchling
1512
jupyterlab_sql_editor/_version.py
1613

17-
# Integration tests
18-
ui-tests/test-results/
19-
ui-tests/playwright-report/
20-
2114
# Created by https://www.gitignore.io/api/python
2215
# Edit at https://www.gitignore.io/?templates=python
2316

@@ -124,11 +117,12 @@ dmypy.json
124117
# OSX files
125118
.DS_Store
126119

127-
# yarn
128-
.yarn/*
129-
!.yarn/cache
130-
!.yarn/patches
131-
!.yarn/plugins
132-
!.yarn/releases
133-
!.yarn/sdks
134-
!.yarn/versions
120+
# Yarn cache
121+
.yarn/
122+
123+
# temp
124+
_temp_extension
125+
.github/workflows
126+
.virtual_documents
127+
*.ipynb
128+
.copier-answers.yml

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ node_modules
44
**/package.json
55
!/package.json
66
jupyterlab_sql_editor
7+
jupyterlab_sql_editor/trino/parsetab.py

.prettierrc

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

.vscode/settings.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"files.trimTrailingWhitespace": true,
3-
"files.trimFinalNewlines": true,
4-
"files.insertFinalNewline": true,
5-
"black-formatter.args": ["--line-length=120"],
6-
"isort.args": ["--profile", "black"],
7-
"python.languageServer": "Pylance",
8-
"ruff.args": ["--line-length=120"],
9-
"ruff.organizeImports": false,
10-
"[python]": {
11-
"editor.tabSize": 4,
12-
"editor.defaultFormatter": "ms-python.black-formatter",
13-
"editor.formatOnSave": true,
14-
"editor.codeActionsOnSave": {
15-
"source.fixAll": "explicit",
16-
"source.organizeImports": "explicit"
17-
},
18-
},
2+
"files.trimTrailingWhitespace": true,
3+
"files.trimFinalNewlines": true,
4+
"files.insertFinalNewline": true,
5+
"black-formatter.args": ["--line-length=120"],
6+
"isort.args": ["--profile", "black"],
7+
"python.languageServer": "Pylance",
8+
"ruff.lint.args": ["--line-length=120"],
9+
"ruff.organizeImports": false,
10+
"[python]": {
11+
"editor.tabSize": 4,
12+
"editor.defaultFormatter": "ms-python.black-formatter",
13+
"editor.formatOnSave": true,
14+
"editor.codeActionsOnSave": {
15+
"source.fixAll": "explicit",
16+
"source.organizeImports": "explicit"
17+
}
18+
}
1919
}
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)