summaryrefslogtreecommitdiff
path: root/.arclint
diff options
context:
space:
mode:
authorEdward Z. Yang <ezyang@cs.stanford.edu>2014-10-02 15:01:47 -0700
committerEdward Z. Yang <ezyang@cs.stanford.edu>2014-10-02 15:07:43 -0700
commit2b59c7ac3f23dd229ddff20d991528ac742dfd24 (patch)
tree10041ac6ee22a112883cd5a997008f8d8dc37402 /.arclint
parenteb3533997e33602007a1a1a760a72bfcb4fba3ee (diff)
downloadhaskell-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--.arclint16
1 files changed, 12 insertions, 4 deletions
diff --git a/.arclint b/.arclint
index f7980155fb..1310973771 100644
--- a/.arclint
+++ b/.arclint
@@ -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",