Skip to content

Commit

Permalink
(vim) Configure linters and fixes for Typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
danguita committed Feb 18, 2024
1 parent a793af1 commit 7807457
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ let g:ale_sign_warning = '⚠'
let g:ale_lint_on_save = 1
let g:ale_fix_on_save = 0
let g:ale_lint_delay = 100
let g:ale_linters = {'javascript': [], 'ruby': ['rubocop'], 'elixir': ['elixir-ls'], 'haskell': ['hlint'] }
let g:ale_fixers = {'javascript': ['eslint'], 'ruby': ['rubocop'], 'elixir': ['mix_format'], 'haskell': ['hlint'], 'rust': ['rustfmt'] }
let g:ale_linters = {'javascript': ['eslint'], 'typescriptreact': ['eslint'], 'ruby': ['rubocop'], 'elixir': ['elixir-ls'], 'haskell': ['hlint'] }
let g:ale_fixers = {'javascript': ['prettier'], 'typescriptreact': ['prettier'], 'ruby': ['rubocop'], 'elixir': ['mix_format'], 'haskell': ['hlint'], 'rust': ['rustfmt'] }
let g:ale_javascript_prettier_use_local_config = 1
let g:ale_ruby_rubocop_executable = 'bin/rubocop'

0 comments on commit 7807457

Please sign in to comment.