File: auto-hlint.sh

package info (click to toggle)
haskell-futhark 0.25.32-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 18,236 kB
  • sloc: haskell: 100,484; ansic: 12,100; python: 3,440; yacc: 785; sh: 561; javascript: 558; lisp: 399; makefile: 277
file content (11 lines) | stat: -rwxr-xr-x 356 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
#
# Automatically apply hlint rules to the given file(s) and directories.
#
# Note: you may need to run this tool to a fixed point manually, as
# some rewrites only do partial improvements, and the resulting code
# may still violate other rules.

for d in "$@"; do
    find "$d" -name \*.hs | parallel hlint --refactor --refactor-options=-i
done