summaryrefslogtreecommitdiff
path: root/.arclint
diff options
context:
space:
mode:
Diffstat (limited to '.arclint')
-rw-r--r--.arclint18
1 files changed, 14 insertions, 4 deletions
diff --git a/.arclint b/.arclint
index bb16f08b42..f7980155fb 100644
--- a/.arclint
+++ b/.arclint
@@ -12,24 +12,34 @@
"nolint": {
"type": "nolint"
},
- "text": {
+ "haskell": {
"type": "text",
- "exclude": [ "(\\.xml)", "(Makefile)", "(\\.mk)" ],
+ "include": ["(\\.(l?hs(-boot)?|x|y\\.pp)(\\.in)?$)"],
"severity": {
"5": "disabled"
}
},
+ "c": {
+ "type": "text",
+ "include": ["(\\.(c|h)(\\.in)?$)"]
+ },
"text-xml": {
"type": "text",
- "include": "(\\.xml)",
+ "include": "(\\.xml$)",
"severity": {
"5": "disabled",
"3": "disabled"
}
},
+ "shell": {
+ "type": "text",
+ "include": [ "(\\.sh$)" ],
+ "text.max-line-length": 200
+ },
"makefiles": {
"type": "text",
- "include": [ "(Makefile)", "(\\.mk)" ],
+ "include": [ "(Makefile$)", "(\\.mk$)" ],
+ "text.max-line-length": 200,
"severity": {
"2": "disabled"
}