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
# Densify the code horizontally, so more of it fits the screen | |
use_small_heuristics="Max" | |
# More flexible as spacing depends on tab size | |
hard_tabs=true | |
# Shorter code lines | |
use_field_init_shorthand=true | |
# Shorter code lines | |
use_try_shorthand=true |
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
function cargo_clean_all() { | |
# Description: Removes artifacts from projects in folders and subfolders recursively | |
# Usage: cargo_clean_all [<folder>] | |
if [ $# -eq 0 ]; then | |
TARGET_FOLDER="." | |
else | |
TARGET_FOLDER=$1 | |
fi |