Page MenuHomeDevCentral

Add shellcheck linter
ClosedPublic

Authored by dereckson on Nov 3 2017, 18:24.
Referenced Files
F44588050: D1163.id.diff
Mon, Aug 17, 18:12
F44552959: D1163.id2971.diff
Mon, Aug 17, 14:41
F44525080: D1163.id2974.diff
Mon, Aug 17, 11:52
F44517887: D1163.diff
Mon, Aug 17, 11:06
Unknown Object (File)
Thu, Aug 13, 11:33
Unknown Object (File)
Thu, Aug 13, 10:54
Unknown Object (File)
Thu, Aug 13, 10:44
Unknown Object (File)
Thu, Aug 13, 09:58

Details

Summary

Setup similar to rOPSf637b1b858173

Test Plan

arc lint

Diff Detail

Repository
rDARC nasqueron/arcanist Docker image
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Works fine:

$ cat > foo.sh
#!/bin/sh

foo $1
$ git add foo.sh 
$ arc lint
>>> Lint for foo.sh:


   Advice  (SC2086) SHELLCHECK
    Double quote to prevent globbing and word splitting.

               1 #!/bin/sh
               2 
    >>>        3 foo $1
                     ^
 OKAY  No lint warnings.
This revision is now accepted and ready to land.Nov 3 2017, 18:30
This revision was automatically updated to reflect the committed changes.