Skip to content

Commit

Permalink
switched from syntastic to ALE
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Nov 28, 2017
1 parent a2b5e53 commit 2b946b5
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
9 changes: 3 additions & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
[submodule "home/.tmux/plugins/tmux-sensible"]
path = home/.tmux/plugins/tmux-sensible
url = https://github.com/tmux-plugins/tmux-sensible.git
[submodule "home/.vim/bundle/syntastic"]
path = home/.vim/bundle/syntastic
url = https://github.com/scrooloose/syntastic.git
[submodule "home/.vim/bundle/vim-colors-solarized"]
path = home/.vim/bundle/vim-colors-solarized
url = https://github.com/altercation/vim-colors-solarized.git
Expand Down Expand Up @@ -103,9 +100,6 @@
[submodule "home/.vim/bundle/vim-tmux-navigator"]
path = home/.vim/bundle/vim-tmux-navigator
url = https://github.com/christoomey/vim-tmux-navigator.git
[submodule "home/.vim/bundle/vim-autopep8"]
path = home/.vim/bundle/vim-autopep8
url = https://github.com/tell-k/vim-autopep8.git
[submodule "home/.vim/bundle/vim-polyglot"]
path = home/.vim/bundle/vim-polyglot
url = https://github.com/sheerun/vim-polyglot.git
Expand Down Expand Up @@ -139,3 +133,6 @@
[submodule "home/.vim/bundle/vim-wordy"]
path = home/.vim/bundle/vim-wordy
url = https://github.com/reedes/vim-wordy.git
[submodule "home/.vim/bundle/ale"]
path = home/.vim/bundle/ale
url = https://github.com/w0rp/ale.git
1 change: 1 addition & 0 deletions home/.vim/bundle/ale
Submodule ale added at a43ada
1 change: 0 additions & 1 deletion home/.vim/bundle/syntastic
Submodule syntastic deleted from d7338f
1 change: 0 additions & 1 deletion home/.vim/bundle/vim-autopep8
Submodule vim-autopep8 deleted from c5e62f
8 changes: 7 additions & 1 deletion home/.vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,16 @@ let g:syntastic_check_on_wq = 0

" Use Python 3 for syntastic highlighting
let g:syntastic_python_python_exec = 'python3'
let g:syntastic_python_checkers=['flake8', 'mypy']
let g:syntastic_python_checkers=[] "['flake8', 'mypy']
let g:syntastic_python_flake8_args='--ignore=E225,E402,E501'
let g:syntastic_python_mypy_args='--ignore-missing-imports'

let g:ale_linters = {
\ 'python': ['flake8', 'mypy'],
\}
let g:ale_python_flake8_options='--ignore=E225,E402,E501'
let g:ale_python_mypy_options='--ignore-missing-imports'

" Use jshint for JS checking
let g:syntastic_javascript_checkers = ['jshint']

Expand Down

0 comments on commit 2b946b5

Please sign in to comment.