Skip to content

Commit 4421605

Browse files
committed
VS Code setings
1 parent ec35262 commit 4421605

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.vscode/settings.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"[python][jsonc][yaml]": {
3+
"editor.formatOnSave": true,
4+
},
5+
"[python]": {
6+
"editor.defaultFormatter": "charliermarsh.ruff",
7+
"editor.codeActionsOnSave": {
8+
"source.fixAll": "always",
9+
"source.organizeImports": "always",
10+
},
11+
},
12+
"[jsonc][yaml]": {
13+
"editor.defaultFormatter": "esbenp.prettier-vscode",
14+
},
15+
}

src/prelude_runner/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from argparse import ArgumentParser
22
from pathlib import Path
33
from typing import Protocol
4+
45
import nbformat
56

67
from .core import Preludes, execute

0 commit comments

Comments
 (0)