toastal
42e4b14861
Merge branch 'master' of github.com:dense-analysis/ale into dhall
2020-11-14 15:03:26 +07:00
Bartek thindil Jasicki
01b661ea25
Merge remote-tracking branch 'upstream/master'
2020-11-06 13:31:59 +01:00
Horacio Sanson
1ec573bf0d
Merge pull request #3427 from lifecrisis/sh-buffer-vars
...
Check for Vim's shell type buffer variables before falling back to the file type
2020-11-05 08:37:15 +09:00
Manoel Brunnen
96d8415946
Add -imacros to C flags
2020-11-03 23:10:15 +01:00
Jason Franklin
31b7a2de41
Move the test for buffer-local variables
...
The "ale#handlers#sh#GetShellType()" function currently falls back
to the file type without checking for buffer-local variables first.
This causes the function to return "sh" even when a script is known
by Vim to be a script of a more specific type (e.g., "bash").
The "ale#handlers#shellcheck#GetDialectArgument()" function then
erroneously uses this type even though a more fitting type should be
used instead. Files without a "#!" line will be of type "sh" even
though they may have a ".bash" suffix.
This commit fixes the problem by checking for buffer-local shell
type variables (set by Vim) before falling back to the file type.
2020-11-02 10:59:16 -05:00
Jason Franklin
73632312c2
Use the proper term for the "#!" line
2020-11-02 10:46:56 -05:00
Jason Franklin
6c22936303
Remove a noise comment
2020-11-02 10:46:28 -05:00
pinicarus
db96b00720
Merge branch 'custom-erlc-executable'
2020-11-01 11:45:36 +01:00
pinicarus
62f2c6d326
test(erlang/erlc): simplify matches
2020-10-28 12:58:15 +01:00
pinicarus
7d69cdf4ad
test(erlang/erlc): make quotes optional in matches
2020-10-28 12:51:38 +01:00
pinicarus
15f44933c2
feat(erlang/erlc): add option for custom executable
2020-10-28 12:38:28 +01:00
Lyz
513e6ee972
feat: add autoimport fixer
2020-10-23 18:53:38 +02:00
David Wood
b496c4b164
Add ormolu fixer.
...
This commit adds a fixer for the Haskell language, ormolu
(https://github.com/tweag/ormolu ).
Signed-off-by: David Wood <david@davidtw.co>
2020-10-23 11:48:21 +01:00
Will Leinweber
cafe8621e2
Add Ruby sorbet option to enable watchman
2020-10-20 23:13:53 -07:00
StephenWithPH
af5a8e1abf
add sbt as a suggested filetype for scalafmt fixer
2020-10-19 09:47:54 -07:00
Bartek thindil Jasicki
b84d41f9ea
Merge remote-tracking branch 'upstream/master'
2020-10-16 17:51:08 +02:00
w0rp
557a1ed5da
Make the two nearly identical Swift tools easier to distinguish
2020-10-15 22:02:27 +01:00
w0rp
477eb89793
#3332 Implement :ALERename! for ignoring errors
...
:ALERename! now ignores errors for files that cannot be modified, and
modifies all other files.
2020-10-15 21:56:21 +01:00
w0rp
f384d61c3d
Fix sorting of supported tools
2020-10-15 21:24:27 +01:00
ecly
f125c11faa
Update FindProjectRootIni with poetry.lock and pyproject.toml
2020-10-15 13:35:47 +02:00
Bartek thindil Jasicki
c4eb41f091
Merge remote-tracking branch 'upstream/master'
2020-10-09 12:54:48 +02:00
D. Ben Knoble
160af49450
update tests
2020-10-08 12:02:30 -04:00
D. Ben Knoble
47da7483d8
Merge remote-tracking branch 'origin/master' into fix-swipl
...
* origin/master:
Add tests for maven.vim file
Fix grammatical error in doc
Add maven helper file; use maven wrapper if available instead of global 'mvn' executable
fix lint, fix variable semantics and update tests
bibclean: update matchlist reges for bibclean > v2.11.4
Update rubocop_auto_correct_all tag
2020-10-08 11:55:39 -04:00
D. Ben Knoble
c37cc1c8a3
dafny: include correct filename in lint results
...
Results can come from included files, not just the current buffer.
2020-10-08 11:54:56 -04:00
Andrey Popp
96ec33e6d6
Use stdin/stdout to communicate with gofmt
2020-10-03 18:44:19 +03:00
pinicarus
d7557ef9be
refactor(erlang/dialyzer): simplify option handling
2020-10-03 10:16:04 +02:00
rgossiaux
9a8ab764d5
Fix typo in ale-python.txt
2020-10-02 22:51:54 -04:00
Horacio Sanson
b91c6c2edd
Merge pull request #3374 from fenuks/maven_helper
...
Use maven wrapper if available
2020-10-02 20:07:28 +09:00
fenuks
4466c47990
Add tests for maven.vim file
2020-10-02 10:03:14 +02:00
Bartek thindil Jasicki
bd1b671e82
Merge remote-tracking branch 'upstream/master'
2020-10-02 09:36:32 +02:00
pinicarus
ef145bda1c
docs(erlang/dialyzer): change wording a bit
2020-10-01 19:20:31 +02:00
D. Ben Knoble
3410c1b1e2
prolog/swipl: add blank line after call
...
Though I do not see this specified or followed anywhere else
2020-10-01 13:18:34 -04:00
D. Ben Knoble
81b92bcbfa
prolog/swipl: add test for new format
2020-10-01 13:12:43 -04:00
D. Ben Knoble
e32d5fc03d
prolog/swipl: address linter feedback
...
This actually caught a bug where I forgot to rename the function
2020-10-01 13:12:18 -04:00
D. Ben Knoble
abe1440268
prolog/swipl: update error format for new version
...
A recent(?) update to swipl changed the error format from
Warning: some.pl:2:
Singleton variables: [Y]
to
Warning: some.pl:2:
Warning: Singleton variables: [Y]
The old error handler doesn't report the correct line numbers and
messages on the old format.
I've chosen to add a function that covers the second case and detect it,
rather than rewrite the current function. This way, both versions should
be able to live together.
---
Example file that demonstrates the issue (some.pl above):
```
% vim: ft=prolog
ii(X, Y) :- X.
```
---
2020-10-01 12:49:53 -04:00
Horacio Sanson
2d3ed956b9
Merge pull request #3375 from isaif/fix-doc
...
Fix grammatical error in doc
2020-10-01 20:44:35 +09:00
isaif
7857098cb0
Fix grammatical error in doc
2020-10-01 16:23:49 +05:30
pinicarus
ac3c0c093a
feat(erlang/dialyzer): add custom options passing
2020-09-30 23:16:50 +02:00
fenuks
7186b0437f
Add maven helper file; use maven wrapper if available instead of global 'mvn' executable
2020-09-30 00:11:57 +02:00
Horacio Sanson
96dcbd1f20
Merge pull request #3367 from bratekarate/update-bibclean
...
bibclean: update matchlist reges for bibclean > v2.11.4
2020-09-28 10:53:19 +09:00
bratekarate
56242cb874
fix lint, fix variable semantics and update tests
2020-09-26 17:09:54 +02:00
Horacio Sanson
94927195ee
Merge pull request #3284 from resong/bug/duplicateTag
...
Update ale_ruby_rubocop_auto_correct_all tag
2020-09-26 14:50:36 +09:00
bratekarate
5f2aeba8cc
bibclean: update matchlist reges for bibclean > v2.11.4
2020-09-26 03:21:26 +02:00
Marcus Zanona
e089969404
fix(ale_linters/phpcs): add support for multiline error messages
2020-09-25 11:25:24 +02:00
toastal
48cbf1cb36
dhall alias
2020-09-25 08:26:17 +07:00
Łukasz Woźniak
6bebdcfa30
Improves fixer performance for large buffers
2020-09-18 12:59:27 +02:00
Arnold Chand
f8351c1b22
fix: test: mkdir should create if it doesn't exist
2020-09-17 09:58:45 -04:00
Arnold Chand
8a855e3e64
fix: tests
2020-09-17 09:35:06 -04:00
Arnold Chand
fec6b63494
feat: add intelephense support for php
2020-09-17 08:06:11 -04:00
Raphael Nepomuceno
9769565f88
Collapse spaces and lines in the completion menu.
2020-09-14 12:11:16 -03:00