Skip to content

Commit

Permalink
fix: remove invalid scripts (#21)
Browse files Browse the repository at this point in the history
* remove `git-commits` which relied on the **git-extras** package that was removed previously
* remove `git-lines` which relied on the **git-extras** package that was removed previously
* remove `minikube-install` as it is no longer necessary (for over a year)
* add `CODEOWNERS` to ensure PR approvals moving forward for vital components
* enable the following settings for the vscode editor to ensure consistency:
  * trim auto-whitespace
  * trim trailing whitespace
  • Loading branch information
dmccaffery authored Jun 26, 2019
1 parent 6ca9b98 commit d3a9c60
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
10 changes: 7 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
"search.exclude": {
"**/backup": true
"**/backup": true,
"**/node_modules/**": true
},
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/backup": true
"**/backup": true,
"**/node_modules/**": true
},
"vsicons.presets.angular": false
"editor.trimAutoWhitespace": true,
"editor.formatOnSave": true,
"files.trimTrailingWhitespace": true
}
6 changes: 6 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@automotiveMastermind/Administrators

CODEOWNERS @sjk07 @dmccaffery

install.sh @sjk07 @dmccaffery
/uname/ @sjk07 @dmccaffery
5 changes: 0 additions & 5 deletions src/scripts/Darwin/minikube-install

This file was deleted.

3 changes: 0 additions & 3 deletions src/scripts/git-commits

This file was deleted.

3 changes: 0 additions & 3 deletions src/scripts/git-lines

This file was deleted.

3 changes: 3 additions & 0 deletions src/scripts/remove-backup
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ __am-prompt-remove-backup() {
BACKUP='prompt'
fi

local REMOVE_PATH="$AM_HOME/backup/$BACKUP"

echo "removing path: $REMOVE_PATH..."
rm -rf "$AM_HOME/backup/$BACKUP" 2>/dev/null
}

Expand Down

0 comments on commit d3a9c60

Please sign in to comment.