Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/dev-with-python/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"ms-toolsai.jupyter-renderers",
"ms-python.vscode-pylance",
"amodio.tsl-problem-matcher",
"dbaeumer.vscode-eslint",
"oxc.oxc-vscode",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"hbenl.vscode-mocha-test-adapter"]
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/dev/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"extensions": [
"ms-toolsai.jupyter-renderers",
"amodio.tsl-problem-matcher",
"dbaeumer.vscode-eslint",
"oxc.oxc-vscode",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"hbenl.vscode-mocha-test-adapter"]
Expand Down
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

292 changes: 0 additions & 292 deletions .eslintrc.cjs

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install dependencies
run: npm ci --prefer-offline --no-audit

- name: Run ESLint
- name: Run oxlint
run: npm run lint

- name: Check Prettier formatting
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ __pycache__
!src/test/pythonEnvironments/**/*.*
!yarn.lock
.DS_Store
.eslintcache
.github_token
.huskyrc.json
.nyc_output
Expand Down
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// See https://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"dbaeumer.vscode-eslint",
"oxc.oxc-vscode",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"ms-python.black",
Expand Down
3 changes: 1 addition & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
".vscode test": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.fixAll.tslint": "explicit"
"source.fixAll.oxc": "explicit"
},
"[python]": {
"editor.formatOnSave": true
Expand Down
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@
{
"type": "npm",
"script": "lint",
"problemMatcher": ["$eslint-stylish"],
"problemMatcher": [],
"label": "npm: lint",
"detail": "eslint -c .eslintrc.js --ext .ts src",
"detail": "oxlint src",
"group": {
"kind": "build"
}
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Thank you for your interest in contributing to the Deepnote VS Code extension! T
4. Windows, macOS, or Linux
5. [Visual Studio Code](https://code.visualstudio.com/)
6. The following VS Code extensions:
- [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)
- [Oxc](https://marketplace.visualstudio.com/items?itemName=oxc.oxc-vscode)
- [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)
- [EditorConfig for VS Code](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig)
- [Python Extension for VS Code](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
Expand Down
Loading
Loading