diff options
author | Edward Z. Yang <ezyang@cs.stanford.edu> | 2014-10-02 15:01:47 -0700 |
---|---|---|
committer | Edward Z. Yang <ezyang@cs.stanford.edu> | 2014-10-02 15:07:43 -0700 |
commit | 2b59c7ac3f23dd229ddff20d991528ac742dfd24 (patch) | |
tree | 10041ac6ee22a112883cd5a997008f8d8dc37402 /.arclint | |
parent | eb3533997e33602007a1a1a760a72bfcb4fba3ee (diff) | |
download | haskell-2b59c7ac3f23dd229ddff20d991528ac742dfd24.tar.gz |
arclint: Don't complain about tabs unless it's inside the diff.
Summary: Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
Test Plan: none
Reviewers: austin
Subscribers: simonmar, ezyang, carter, thomie
Differential Revision: https://phabricator.haskell.org/D303
Diffstat (limited to '.arclint')
-rw-r--r-- | .arclint | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -16,25 +16,33 @@ "type": "text", "include": ["(\\.(l?hs(-boot)?|x|y\\.pp)(\\.in)?$)"], "severity": { - "5": "disabled" + "5": "disabled", + "2": "warning" } }, "c": { "type": "text", - "include": ["(\\.(c|h)(\\.in)?$)"] + "include": ["(\\.(c|h)(\\.in)?$)"], + "severity": { + "2": "warning" + } }, "text-xml": { "type": "text", "include": "(\\.xml$)", "severity": { "5": "disabled", - "3": "disabled" + "3": "disabled", + "2": "warning" } }, "shell": { "type": "text", "include": [ "(\\.sh$)" ], - "text.max-line-length": 200 + "text.max-line-length": 200, + "severity": { + "2": "warning" + } }, "makefiles": { "type": "text", |