Skip to content

Commit

Permalink
Unsuppress other projects, migrate unsupported folder settings to wor…
Browse files Browse the repository at this point in the history
…kspace settings
  • Loading branch information
blakeNaccarato committed Oct 21, 2023
1 parent b547f49 commit 51eafd9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
},
//* IPYNB
"[ipynb]": {
"editor.defaultFormatter": "ms-python.black-formatter"
"editor.defaultFormatter": "charliermarsh.ruff"
},
//* TXT
"[plaintext]": {
Expand Down
25 changes: 18 additions & 7 deletions boiler.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,26 @@
},
{
"path": "../boilercv"
},
{
"path": "../boilerdaq"
},
{
"path": "../boilerdata"
}
// {
// "path": "../boilerdaq"
// },
// {
// "path": "../boilerdata"
// }
],
"settings": {
"explorer.fileNesting.expand": false
"terminal.integrated.defaultProfile.linux": "pwsh",
"python.languageServer": "Pylance",
"explorer.fileNesting.expand": false,
"notebook.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": "explicit"
},
"ruff.importStrategy": "fromEnvironment",
"ruff.enableExperimentalFormatter": true,
"git.inputValidationSubjectLength": 88,
"git.inputValidationLength": 1e100,
"yaml.format.printWidth": 88
}
}
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ ignore_unused = [
"gmpy2", # for faster sympy computations
]

# Use ruff for sorting, but configure this in case isort is being used in IDE tooling
[tool.isort]
profile = "black"

[tool.pyright]

# * -------------------------------------------------------------------------------- * #
Expand Down

0 comments on commit 51eafd9

Please sign in to comment.