pytorch/.vscode/settings_recommended.json
Xuehai Pan d2dc173664 Remove lint dependency ufmt (#132573)
`ufmt` is a combination of `black + usort`.

This PR removes `ufmt` and run `black` and `usort` separately.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/132573
Approved by: https://github.com/ezyang
ghstack dependencies: #129769, #132572
2024-08-04 10:24:09 +00:00

15 lines
367 B
JSON

{
"[python]": {
"editor.tabSize": 4
},
"files.associations": {
"*.py.in": "python",
"*.pyi.in": "python"
},
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"python.linting.enabled": true,
"python.linting.flake8Enabled": true
}