Age | Commit message (Collapse) | Author |
|
|
|
not being parsed
|
|
|
|
[PR: hamllint] auto-detect .rubocop.yml and .haml-lint.yml when using haml-lint
|
|
|
|
Handle multiple files in the GCC handler.
|
|
|
|
Based on path to current file
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Update test scripts to work on OS X
|
|
Add support for fixing Haskell with hfmt
|
|
Add phan for checking PHP code
|
|
add rustfmt fixer
|
|
`mix format` new fixer for elixir lang
|
|
|
|
|
|
|
|
(only available in elixir > 1.6)
|
|
Fix the regex of phpmd
|
|
|
|
There were a couple of issues
- `paste` requires a file argument
- `mktemp` requires a pattern argument
- `sort` doesn't support `-h`, but `-n` is enough for sorting on numbers, and `-s` was introduced to perform a stable sort instead.
The main issues were that BSD `sed` does not support:
- Alternation (`\|`) - solved by splitting to multiple patterns
- Bound shortcuts (`x\+`, `x\?`) - solved by replacing with `xx*` and `x\{0,1\}` respectively
- Lower-casing (`\L`) - solved by piping through `tr` instead (this will lowercase everything and not only the integration names, but I assumed that wasn't too much of an issue, as a portable alternative for the selective downcasing would be much more involved).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
way that users will be directed towards getting it to work
|
|
|
|
|
|
|
|
|
|
|
|
Luacheck: Respect warn_about_trailing_whitespace option
|
|
|
|
add a new fixer: trim_whitespace
|
|
|
|
|
|
Check LLVM IR with llc
|
|
|
|
|
|
Add a gofmt fixer for golang.
|
|
|