-
Notifications
You must be signed in to change notification settings - Fork 27
/
inspections-structure.json
60 lines (60 loc) · 1.07 KB
/
inspections-structure.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
{
"projectName": "inspections",
"modules": [
{
"name": "inspections",
"directory": "."
},
{
"name": "sample",
"directory": "sample",
"sourceSets": [
"sample/src/main/kotlin",
"sample/src/main/java"
]
},
{
"name": "cli",
"directory": "cli",
"sourceSets": [
"cli/src/main/kotlin"
]
},
{
"name": "plugin",
"directory": "plugin",
"sourceSets": [
"plugin/src/main/kotlin",
"plugin/src/main/java"
]
},
{
"name": "testing",
"directory": "testing",
"sourceSets": [
"testing/src/test/kotlin"
]
},
{
"name": "frontend",
"directory": "frontend",
"sourceSets": [
"frontend/src/main/kotlin"
]
},
{
"name": "interface",
"directory": "interface",
"sourceSets": [
"interface/src/main/kotlin"
]
},
{
"name": "runner",
"directory": "runner",
"sourceSets": [
"runner/src/main/kotlin"
]
}
]
}