-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinter-config.json
More file actions
38 lines (38 loc) · 857 Bytes
/
linter-config.json
File metadata and controls
38 lines (38 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"toolsDir": ".linter/tools",
"modes": {
"manual": {
"fileSource": { "export": "AllFilesSource" }
},
"hook": {
"fileSource": { "export": "StagedFilesSource" }
},
"ci": {
"fileSource": { "export": "DiffBaseSource", "options": {} }
}
},
"checks": [
{
"name": "crlf",
"export": "CrlfCheck",
"modes": ["manual", "hook", "ci"],
"options": { "extensions": [".js", ".json", ".md"] }
},
{
"name": "linelint",
"export": "LinelintCheck",
"modes": ["manual", "hook", "ci"],
"options": {}
},
{
"name": "codegen",
"export": "CodegenCheck",
"modes": ["manual", "hook", "ci"],
"options": {
"command": "node esbuild.config.js",
"inputFile": "linter.js",
"outputFile": "dist/linter.mjs"
}
}
]
}