Adding hints for Python

This commit is contained in:
Martin Karkowski 2021-03-19 13:18:41 +01:00
parent 1e1e47aefe
commit d4628e183d

View File

@ -40,6 +40,7 @@ code --install-extension rvest.vs-code-prettier-eslint
"source.organizeImports": true
}
},
"editor.formatOnSave": true
"editor.formatOnSave": true,
"python.formatting.autopep8Args": ["--ignore", "E402"] // <-- This is important if you are working with ordered python imports
}
```