-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the pytorch versioning fix as this has been solved with the latest pytorch version. Also format with even better toml so that the pyproject is easier to read.
- Loading branch information
1 parent
0825c5e
commit ce82675
Showing
6 changed files
with
1,166 additions
and
1,137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,41 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": true | ||
}, | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter" | ||
}, | ||
"[toml]": { | ||
"editor.defaultFormatter": "tamasfe.even-better-toml" | ||
}, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": true | ||
}, | ||
"editor.formatOnSave": true, | ||
"evenBetterToml.formatter.allowedBlankLines": 1, | ||
"evenBetterToml.formatter.arrayAutoCollapse": true, | ||
"evenBetterToml.formatter.arrayAutoExpand": true, | ||
"evenBetterToml.formatter.arrayTrailingComma": true, | ||
"evenBetterToml.formatter.columnWidth": 100, | ||
"evenBetterToml.formatter.compactArrays": true, | ||
"evenBetterToml.formatter.compactEntries": true, | ||
"evenBetterToml.formatter.compactInlineTables": true, | ||
"evenBetterToml.formatter.indentEntries": true, | ||
"evenBetterToml.formatter.indentString": " ", | ||
"evenBetterToml.formatter.indentTables": true, | ||
"evenBetterToml.formatter.inlineTableExpand": true, | ||
"evenBetterToml.formatter.reorderArrays": true, | ||
"evenBetterToml.formatter.reorderKeys": true, | ||
"evenBetterToml.formatter.trailingNewline": true, | ||
"evenBetterToml.schema.enabled": true, | ||
"evenBetterToml.schema.links": true, | ||
"evenBetterToml.syntax.semanticTokens": false, | ||
"mypy-type-checker.importStrategy": "fromEnvironment", | ||
"notebook.formatOnCellExecution": true, | ||
"notebook.formatOnSave.enabled": true, | ||
"pylint.importStrategy": "fromEnvironment", | ||
"python.testing.pytestArgs": [ | ||
"transformer_lens", | ||
], | ||
"python.testing.pytestEnabled": true, | ||
"rewrap.autoWrap.enabled": true, | ||
"rewrap.reformat": true, | ||
"rewrap.wrappingColumn": 100, | ||
"mypy-type-checker.importStrategy": "fromEnvironment", | ||
"pylint.importStrategy": "fromEnvironment", | ||
"notebook.formatOnCellExecution": true, | ||
"notebook.formatOnSave.enabled": true, | ||
"cSpell.words": [ | ||
"accum" | ||
], | ||
} |
Oops, something went wrong.