Skip to content

Commit

Permalink
feat: ipykernel (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
naa0yama authored Jul 14, 2024
1 parent 5e26cae commit 6a82058
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 629 deletions.
4 changes: 0 additions & 4 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,3 @@ RUN set -eux && \
pip install --user "poetry==${POETRY_VERSION}" && \
pip install --user poetry-dynamic-versioning && \
type poetry

RUN set -eux && \
/usr/bin/fish -c 'curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher' && \
/usr/bin/fish -c 'fisher install oh-my-fish/theme-bobthefish'
5 changes: 1 addition & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@
"extensions": [
"charliermarsh.ruff", // Ruff
"christian-kohler.path-intellisense", // Path Intellisense
"Continue.continue", // Continue - Codestral, Claude, and more
"DavidAnson.vscode-markdownlint", // markdownlint
"docsmsft.docs-images", // docs-images
"docsmsft.docs-markdown", // learn-markdown
"docsmsft.docs-preview", // learn-preview
"eamodio.gitlens", // GitLens — Git supercharged
"esbenp.prettier-vscode", // Prettier - Code formatter
"github.vscode-github-actions", // GitHub Actions
Expand All @@ -32,7 +30,6 @@
"ms-python.mypy-type-checker", // Mypy Type Checker
"ms-python.python", // Python
"ms-python.vscode-pylance", // Pylance
"ms-toolsai.jupyter", // Jupyter
"ms-vscode-remote.remote-containers", // Dev Containers
"ms-vscode-remote.remote-wsl", // WSL
"njpwerner.autodocstring", // autoDocstring - Python Docstring Generator
Expand Down
17 changes: 17 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
changelog:
exclude:
labels:
- ignore-for-release

categories:
- title: Features 🎉
labels: ['enhancement']
- title: Bug Fixes 🐌
labels: ['bug']
- title: Documentation 🗒️
labels: ['documentation']
- title: Dependency Updates 👒
labels: ['renovate']
- title: Other Changes
labels: ['*']
5 changes: 1 addition & 4 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@
"recommendations": [
"charliermarsh.ruff", // Ruff
"christian-kohler.path-intellisense", // Path Intellisense
"Continue.continue", // Continue - Codestral, Claude, and more
"DavidAnson.vscode-markdownlint", // markdownlint
"docsmsft.docs-images", // docs-images
"docsmsft.docs-markdown", // learn-markdown
"docsmsft.docs-preview", // learn-preview
"eamodio.gitlens", // GitLens — Git supercharged
"esbenp.prettier-vscode", // Prettier - Code formatter
"github.vscode-github-actions", // GitHub Actions
Expand All @@ -16,7 +14,6 @@
"ms-python.mypy-type-checker", // Mypy Type Checker
"ms-python.python", // Python
"ms-python.vscode-pylance", // Pylance
"ms-toolsai.jupyter", // Jupyter
"ms-vscode-remote.remote-containers", // Dev Containers
"ms-vscode-remote.remote-wsl", // WSL
"njpwerner.autodocstring", // autoDocstring - Python Docstring Generator
Expand Down
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@
"markSection2AndTakeDiff": true,
"togglePreComparisonTextNormalizationRules": true
},
"partialDiff.enableTelemetry": false,
/*****************************************************************************
* Extension: Prettier - Code formatter */
"prettier.enable": true,
Expand All @@ -241,6 +242,9 @@
"markiscodecoverage.enableDecorations": false,
// ${workspaceFolder} に対応非対応
"markiscodecoverage.searchCriteria": "coverage.lcov",
/*****************************************************************************
* Extension: Continue */
"continue.telemetryEnabled": false,
/*****************************************************************************
* Extension: Markdown All in One */
"markdown.extension.list.indentationSize": "inherit",
Expand Down
Loading

0 comments on commit 6a82058

Please sign in to comment.