-
Squash commits into a single commit and rebase feature branch onto
upstream/developgit fetch upstream && git rebase -i $(git merge-base feature_name upstream/develop)
-
Cleanup git repository aggressively
use bfg https://rtyley.github.io/bfg-repo-cleaner/
java -jar bfg.jar --delete-files your_unwanted_files
This file contains hidden or 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
| # pip install autopep8 pylint flake8 black blackcellmagic yapf | |
| Program: autopep8 | |
| Arguments: --in-place --aggressive --aggressive $FilePath$ | |
| Working Directory: $ProjectFileDir$ | |
| Regular expression to match output:$FILE_PATH$:$LINE$:$COLUMN$:.* | |
| Program: pylint | |
| Arguments: "--msg-template='{abspath}:{line}: [{msg_id}({symbol}), {obj}] {msg}'" --output-format=colorized "$FilePath$" | |
| Working directory: $ProjectFileDir$ |
This file contains hidden or 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
| { | |
| // For a full list of commands, refer | |
| // https://github.com/jupyterlab/jupyterlab/blob/master/packages/notebook-extension/src/index.ts | |
| "shortcuts":[ | |
| { | |
| "command":"notebook:run-all-above", | |
| "keys":[ | |
| "F5" | |
| ], | |
| "selector":".jp-Notebook:focus" |
NewerOlder