Newer
Older
{
"linters": {
"filename": {
"type": "filename"
},
"generated": {
"type": "generated"
},
"merge-conflict": {
"type": "merge-conflict",
"include": ["(\\.(l?hs(-boot)?|x|y\\.pp)(\\.in)?$)"],
"5": "disabled",
"2": "warning"
"include": ["(\\.(c|h)(\\.in)?$)"],
"severity": {
"2": "warning"
}
"3": "disabled",
"2": "warning"
"shell": {
"type": "text",
"include": [ "(\\.sh$)" ],
"text.max-line-length": 200,
"severity": {
"2": "warning"
}
"text.max-line-length": 400,
"severity": {
"2": "disabled"
}
"cabal": {
"type": "text",
"include": ["(\\.cabal(\\.in)?$)"],
"severity": {
"5": "disabled",
"2": "warning"
}
},
"other-text": {
"type": "text",
"include": ["(.travis.yml?)", "(.md$)", "(.txt$)"],
"severity": {
"5": "disabled",
"2": "warning"
}
},
"check-binaries": {
"type": "external-json",
"external-json.script": "python3 .arc-linters/check-binaries.py"
"check-makefiles": {
"type": "external-json",
"include": ["(Makefile$)"],
"external-json.script": "python3 .arc-linters/check-makefiles.py"
"bad-assert-clang-cpp": {
"type": "external-json",
"include": ["(\\.(l?hs|x|y\\.pp)(\\.in)?$)", "(\\.(c|h)$)"],
"external-json.script": "python3 .arc-linters/check-cpp.py"
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
},
"exclude":
[ "(^libffi-tarballs)",
"(^libraries/binary)",
"(^libraries/bytestring)",
"(^libraries/Cabal)",
"(^libraries/containers)",
"(^libraries/haskeline)",
"(^libraries/pretty)",
"(^libraries/terminfo)",
"(^libraries/transformers)",
"(^libraries/xhtml)",
"(^libraries/Win32)",
"(^libraries/primitive)",
"(^libraries/vector)",
"(^libraries/time)",
"(^libraries/random)",
"(^libraries/array)",
"(^libraries/deepseq)",
"(^libraries/directory)",
"(^libraries/filepath)",
"(^libraries/haskell98)",
"(^libraries/haskell2010)",
"(^libraries/hoopl)",
"(^libraries/hpc)",
"(^libraries/old-locale)",
"(^libraries/old-time)",
"(^libraries/process)",
"(^libraries/unix)",
"(^libraries/parallel)",
"(^libraries/stm)",
"(^libraries/dph)",
"(^utils/haddock)",
"(^nofib)",
"(^utils/hsc2hs)",
"(^libffi-tarballs)",
"(^ghc-tarballs)"
]