-
Notifications
You must be signed in to change notification settings - Fork 5
/
.fluidlintallrc-custom-options.json
86 lines (86 loc) · 2.38 KB
/
.fluidlintallrc-custom-options.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"sources": {
"json5": ["./src/**/*.json5", "./tests/**/*.json5", "./*.json5", "./tests/**/*.with.extensions"]
},
"eslint": {
"js": {
"excludes": "@expand:fluid.generate(64,'')",
"options": {
"overrideConfig": {
"rules": {
"@stylistic/js/indent": 0,
"no-console": 0,
"no-undef": 0,
"@stylistic/js/semi": 0,
"strict": 0
}
}
}
},
"json": {
"excludes": "@expand:fluid.generate(64,'')",
"options": {
"overrideConfig": {
"rules": {
"@stylistic/js/comma-dangle": 0,
"no-undef": 0
}
}
}
},
"md": {
"excludes": "@expand:fluid.generate(64,'')",
"options": {
"overrideConfig": {
"rules": {
"@stylistic/js/semi": 0
}
}
}
}
},
"json5lint": {
"excludes": ["tests/fixtures/json5/bad.json5"]
},
"jsonlint": {
"excludes": ["tests/fixtures/json/bad.json"]
},
"lintspaces": {
"jsonindentation": {
"excludes": "@expand:fluid.generate(64,'')",
"options": {
"indentation": false
}
},
"newlines": {
"excludes": "@expand:fluid.generate(64,'')",
"options": {
"newline": false
}
}
},
"markdownlint": {
"excludes": "@expand:fluid.generate(64,'')",
"options": {
"config": {
"single-trailing-newline": false,
"first-line-heading": false
}
}
},
"mdjsonlint": {
"excludes": ["tests/fixtures/md/bad.md", "tests/fixtures/md/badJson5.md"]
},
"stylelint": {
"excludes": "@expand:fluid.generate(64,'')",
"options": {
"configFile": "@expand:fluid.module.resolvePath(%fluid-lint-all/.stylelintrc-custom.json)"
}
},
"yaml": {
"excludes": ["tests/fixtures/yaml/bad-indentation.yml"],
"options": {
"json": true
}
}
}