Skip to content

Commit

Permalink
improved eslintrc and alias for grep.
Browse files Browse the repository at this point in the history
  • Loading branch information
izdesenko committed May 18, 2016
1 parent 08d36dd commit eabf279
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion bash_include
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
export EDITOR=vim
export VISUAL=vim
export XDEBUG_CONFIG="ide-key=vim"
export GREP_OPTIONS='--color=auto --exclude=*.swp --exclude-dir=.git'
if [ "$(whoami)" == "ilya" ]
then
export GIT_EDITOR=vim
Expand Down Expand Up @@ -308,7 +309,7 @@ fi


alias mtail="less +F "
alias grep="grep --color"
# alias grep="grep --color"
alias ll="ls -lAF"
alias gis="git -c color.ui=always -c color.status=always status"
alias giss="git -c color.ui=always -c color.status=always status | grep -v .min.js | grep -v .min.css "
Expand Down
2 changes: 1 addition & 1 deletion bundle/fugitive
Submodule fugitive updated 1 files
+2 −6 plugin/fugitive.vim
2 changes: 1 addition & 1 deletion bundle/syntastic
4 changes: 2 additions & 2 deletions eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"no-dupe-keys": "error",
"no-duplicate-case": "error",
"no-dupe-args": "error",
"no-empty": "error",
"no-empty": ["error",{"allowEmptyCatch":true}],
"no-empty-function": "off",
"no-func-assign": "error",
"no-extra-parens": "error",
Expand All @@ -115,7 +115,7 @@
"no-extra-label": "error",
"no-fallthrough": "error",
"no-lone-blocks": "error",
"no-invalid-this": "error",
"no-invalid-this": "off",
"no-lonely-if": "error",
"no-extra-boolean-cast": "error",
"no-floating-decimal": "error",
Expand Down

0 comments on commit eabf279

Please sign in to comment.