Skip to content

Commit 9df0c64

Browse files
author
Ira Abramov
committed
linting the bats
1 parent 092b1ea commit 9df0c64

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

aliases/available/git.aliases.bash

+3-3
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ alias ggup='git log --branches --not --remotes --no-walk --decorate --oneline' #
8383
alias gll='git log --graph --pretty=oneline --abbrev-commit'
8484
alias gnew='git log HEAD@{1}..HEAD@{0}' # Show commits since last pull, see http://blogs.atlassian.com/2014/10/advanced-git-aliases/
8585
alias gwc='git whatchanged'
86-
alias ghist='git log --pretty=format:'\''%h %ad | %s%d [%an]'\'' --graph --date=short' # Use it to be fast and without color.
86+
alias ghist='git log --pretty=format:'\''%h %ad | %s%d [%an]'\'' --graph --date=short' # Use it to be fast and without color.
8787
alias gprogress='git log --pretty=format:'\''%C(yellow)%h %Cblue%ad %Creset%s%Cgreen [%cn] %Cred%d'\'' --decorate --date=short' #Usually use "git progress" in the file .gitconfig. The new alias from Git friends will be truly welcome.
8888

8989
# ls-files
@@ -153,8 +153,8 @@ alias grma='GIT_SEQUENCE_EDITOR=: git rebase $(get_default_branch) -i --autosqu
153153
alias gprom='git fetch origin $(get_default_branch) && git rebase origin/$(get_default_branch) && git update-ref refs/heads/$(get_default_branch) origin/$(get_default_branch)' # Rebase with latest remote
154154

155155
# reset
156-
alias gus='git reset HEAD' # read as: 'git unstage'
157-
alias grh='git reset' # equivalent to: git reset HEAD
156+
alias gus='git reset HEAD' # read as: 'git unstage'
157+
alias grh='git reset' # equivalent to: git reset HEAD
158158
alias grh!='git reset --hard'
159159
alias gpristine='git reset --hard && git clean -dfx'
160160

test/plugins/battery.plugin.bats

+1
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ function setup_ioreg {
271271
percent="$1"
272272

273273
function ioreg {
274+
# shellcheck disable=SC2317
274275
printf "\"MaxCapacity\" = 100\n\"CurrentCapacity\" = %s" "${percent}"
275276
}
276277
}

themes/base.theme.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -416,9 +416,9 @@ function node_version_prompt() {
416416
_log_debug "node: using version strategy '$NODE_VERSION_STRATEGY'"
417417

418418
if [ "$NODE_VERSION_STRATEGY" == "nvm" ]; then
419-
nvm_version_prompt
419+
nvm_version_prompt
420420
elif [ "$NODE_VERSION_STRATEGY" == "node" ]; then
421-
node_native_version_prompt
421+
node_native_version_prompt
422422
fi
423423
}
424424

0 commit comments

Comments
 (0)