w0rp
cb410927d1
Reduce sign column juttering by waiting for all jobs to complete before updating everything.
2016-10-31 13:45:22 +00:00
w0rp
f44756f347
Merge pull request #158 from mshr-h/support-clang-for-c
...
Add support for clang for C language
2016-10-31 10:58:40 +00:00
mshr-h
e3a8829d67
Add support for clang for c
2016-10-31 14:38:13 +09:00
w0rp
9028d1f132
Add pylint to the list of supported tools.
2016-10-30 09:47:06 +00:00
w0rp
a6ca60203f
Increase the delay for linting on entering a buffer.
2016-10-30 09:29:11 +00:00
w0rp
629e6a3675
Merge pull request #153 from keith/ks/shellcheck
...
Choose shell dialect based on vim syntax
2016-10-30 09:24:39 +00:00
w0rp
c4ab4855b7
Merge pull request #155 from deathmaz/feature/htmlhint-args
...
Added options variable for htmlhint
2016-10-30 09:21:55 +00:00
w0rp
8bee64d1b7
Update the documentation to match the code
2016-10-30 09:21:34 +00:00
w0rp
e9bbbbdf3e
Merge pull request #151 from keith/ks/pylint
...
Add pylint formatter
2016-10-30 09:20:02 +00:00
deathmaz
9a4645fc7f
Default stdin in htmlhint options
2016-10-28 12:42:55 +03:00
Keith Smiley
5fc2f8f6c0
Choose shell dialect based on vim syntax
...
Shellcheck is smart enough to check the shebang in a given file to
determine which dialect to use. Unfortunately this doesn't work for
files without shebangs, even if it might be apparent what dialect should
be used, such as "bashrc" or "foo.bash". Luckily `filetype.vim` defines
specific vars based on which shell dialect is being used based on a huge
list of conditions. With this change we take those into account for all
the types shellcheck supports, otherwise we fallback to letting it try
and decide.
2016-10-27 18:46:58 -07:00
Keith Smiley
86cc2aab71
Add pylint formatter
...
This customizes the output format of pylint in order to use the same
pep8 parser
2016-10-27 18:38:26 -07:00
deathmaz
5b56103c69
Added optoins variable for htmlhint
2016-10-27 18:31:49 +03:00
w0rp
c8821fc049
#144 - Implement commands for moving through warnings/errors
2016-10-26 10:36:53 +01:00
w0rp
1bcee7ef33
Mention the Google Vimscript Style Guide in the contributing file.
2016-10-25 17:41:34 +01:00
w0rp
454dbbe33e
Merge remote-tracking branch 'origin/echo-less'
2016-10-25 16:51:50 +01:00
w0rp
aa4c669ea0
#148 - Check the cursor position so we don't try to echo too frequently.
2016-10-25 16:07:20 +01:00
w0rp
60762d5018
Merge pull request #143 from w0rp/better-buffer-cleanup
...
Stop jobs when buffers close
2016-10-25 16:02:47 +01:00
w0rp
222d9e6908
Fix the autocmd suggestion some more
2016-10-25 15:46:18 +01:00
w0rp
9a019e2342
Fix a mistake in the FAQ code for the autocmd event
2016-10-25 15:01:10 +01:00
w0rp
73c9a1f965
#148 Do not run ALE for NERDTree or Unite.vim buffers.
2016-10-25 14:09:58 +01:00
w0rp
0fbf7bcc99
Fix the headings and table of contents.
2016-10-25 10:44:50 +01:00
w0rp
2bcb21f350
Restructure the README.
2016-10-25 10:39:06 +01:00
w0rp
d6a7b0f518
#119 - Stop ALE clearing the echo message when it doesn't need to.
2016-10-24 20:55:20 +01:00
w0rp
b9428b7db0
Merge #139 - Add Markdown linting support
2016-10-24 20:40:24 +01:00
Alex Layton
95373ddab5
Add support for mlint, a MATLAB linter ( #145 )
...
* Add support for mlint, a MATLAB linter
* Fix mlint linter as requested
* Clean up leftover loaded flag for mlint
2016-10-24 20:32:52 +01:00
w0rp
6e66b60b63
Limit Travis to only building master on push.
2016-10-24 20:27:36 +01:00
w0rp
79552872f3
Merge pull request #142 from w0rp/use-local-jshint-program
...
Add node_modules support for JSHint, and use the global config as a fallback
2016-10-24 20:23:15 +01:00
w0rp
c546f47cc0
Merge everything into the one global map.
2016-10-24 20:21:42 +01:00
w0rp
0dbf08f6d5
Add some comments to some lines to make things clearer.
2016-10-24 09:58:45 +01:00
w0rp
7481facd73
#107 Stop jobs when buffers close
2016-10-23 22:41:00 +01:00
w0rp
226b4ed586
Add node_modules support for JSHint, and use the global config as a fallback.
2016-10-23 13:25:50 +01:00
w0rp
36461b69d7
Support loading eslint from node_modules, re issue #118 .
2016-10-23 13:04:41 +01:00
w0rp
f94865c4ce
Merge pull request #140 from neersighted/cleanup
...
Clean up some test filenames and extraneous code
2016-10-23 10:41:58 +01:00
Bjorn Neergaard
dc99282f79
Clean up some test filenames and extraneous code
2016-10-22 08:53:28 -05:00
w0rp
89d8f2a0bc
Merge pull request #138 from neersighted/dotft
...
Add support for dot-seperate linters, improve linter tests
2016-10-22 14:35:13 +01:00
Bjorn Neergaard
99aebcafac
Docs!
2016-10-22 08:31:29 -05:00
w0rp
cd00a18c3a
Make builds fail again when there are Vint warnings.
2016-10-22 14:20:05 +01:00
Łukasz Jan Niemier
e293e0b5ab
Use cat
instead of read -r
to stream stdin to file ( #120 )
...
* Use `cat` instead of `read -r` to stream stdin to file
* Cleanup dmd-wrapper
* Fix typo
* Make wrapper work on macOS
* Use fifo instead of temporary file
* Fix stdin-wrapper
* Use `awk` instead of `read` hackery
* Finish refactoring
* Fix `exec` issue
* Add myself as an coauthor of wrapper scripts (no shame at all :P)
* Fix dmd-wrapper
* Extract check_dubfile
2016-10-22 13:52:49 +01:00
Bjorn Neergaard
f49f615ef6
Add support for dot-seperate linters, improve linter tests
...
This PR first and formost implements support for dot-seperate filetypes,
a very trivial change.
This closes #132
But more importantly, this PR vastly improves the test quality for
`ale#linter#Get`. It enables us to reset the state of ale's internal
linter cache, to facilitate better testing, as well as making use of
mocked linters instead of depending on linters on disk (which may
change). In addition, a dummy linter is defined to test the autoloading
behavior.
Header guards were removed from all linters as:
* A: ale won't try and load linters if they already exist in memory
* B: we can't reset state for testing if they can't be loaded again
2016-10-21 21:02:20 -05:00
w0rp
216eadbcbe
Merge pull request #133 from ehzShelter/master
...
Added c++14 standard support and POSIX API compile time linker flags and ISO c++14 atomic and thread library support…
2016-10-21 18:08:25 +01:00
ehzShelter
1e83489691
make it less verbose for c and cpp
2016-10-21 20:02:20 +06:00
w0rp
5eee70cf37
Merge pull request #129 from neersighted/ansible
...
Add ansible-lint support and factor out PEP8 handler
2016-10-21 09:21:50 +01:00
ehzShelter
ce3d79550d
Added c++14 standard support and POSIX API compile time linker flags for avoiding annoying errors and warnings
2016-10-21 13:07:51 +06:00
Bjorn Neergaard
c697ef05bb
Add PEP8 handler test.
2016-10-20 22:52:25 -05:00
w0rp
7a06d276c2
#131 Keep the error types in the message for eslint
2016-10-20 18:07:55 +01:00
Bjorn Neergaard
a2e4af1626
Document ansible-lint
2016-10-20 09:27:57 -05:00
Bjorn Neergaard
c34664120b
Add ansible-lint support and factor out PEP8 handler
2016-10-20 09:23:23 -05:00
Bart Libert
a34fb0a6a7
Add support for cppcheck ( #126 )
...
* Add support for cppcheck
* Fix vint error in cppcheck handler
* Add vader test for CppCheck format handler
2016-10-20 12:30:45 +01:00
w0rp
acb209aa11
Fix the D error parsing to handle output without column numbers.
2016-10-19 23:42:00 +01:00