-
Notifications
You must be signed in to change notification settings - Fork 5
/
.fluidlintallrc.json
66 lines (66 loc) · 2.06 KB
/
.fluidlintallrc.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
{
"sources": {
"json5": ["./src/**/*.json5", "./tests/**/*.json5", "./*.json5", "./tests/**/*.with.extensions"]
},
"eslint": {
"js": {
"excludes": ["tests/fixtures/js/bad.js", "tests/fixtures/node_modules/nested-package/*.js"]
},
"json": {
"excludes": ["tests/fixtures/json/bad.json", "tests/fixtures/json5/bad.json5", "tests/fixtures/json5/dangling-comma.json5", "tests/fixtures/node_modules/nested-package/*.json"]
},
"md": {
"excludes": ["tests/fixtures/md/bad.md"]
}
},
"json5lint": {
"excludes": ["tests/fixtures/json5/bad.json5"]
},
"jsonlint": {
"excludes": ["tests/fixtures/json/bad.json"]
},
"lintspaces": {
"jsonindentation": {
"excludes": ["tests/fixtures/json/bad.json", "tests/fixtures/node_modules/nested-package/package.json"]
},
"newlines": {
"excludes": [
"tests/fixtures/css/bad.css",
"tests/fixtures/scss/bad.scss",
"tests/fixtures/md/bad*.md",
"tests/fixtures/other/.bad",
"tests/fixtures/images/*",
"*.aiff",
"*.eot",
"*.gif",
"*.jpg",
"*.jpeg",
"*.mp3",
"*.mp4",
"*.otf",
"*.pdf",
"*.png",
"*.ppt",
"*.pptx",
"*.svg",
"*.wav",
"*.webm",
"*.webp",
"*.woff",
"*.woff2"
]
}
},
"markdownlint": {
"excludes": ["tests/fixtures/md/bad*.md"]
},
"mdjsonlint": {
"excludes": ["tests/fixtures/md/bad.md", "tests/fixtures/md/badJson5.md"]
},
"stylelint": {
"excludes": ["tests/fixtures/css/bad.css","tests/fixtures/scss/bad.scss"]
},
"yaml": {
"excludes": ["tests/fixtures/yaml/bad-duplicate-keys.yml","tests/fixtures/yaml/bad-indentation.yml"]
}
}