summaryrefslogtreecommitdiff
path: root/.projections.json.example
blob: dc1b42b917a36ecee0f4eaec253d246871b455a1 (plain)
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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
  "ee/*": { "type": "ee" },
  "config/initializers/*.rb": {
    "alternate": "spec/initializers/{}_spec.rb",
    "type": "source"
  },
  "spec/initializers/*_spec.rb": {
    "alternate": "config/initializers/{}.rb",
    "type": "test"
  },
  "app/channels/*.rb": {
    "related": "ee/app/channels/ee/{}.rb",
    "type": "source"
  },
  "app/components/*.rb": {
    "related": "ee/app/components/ee/{}.rb",
    "type": "source"
  },
  "app/controllers/*.rb": {
    "related": "ee/app/controllers/ee/{}.rb",
    "type": "source"
  },
  "app/enums/*.rb": {
    "related": "ee/app/enums/ee/{}.rb",
    "type": "source"
  },
  "app/events/*.rb": {
    "related": "ee/app/events/ee/{}.rb",
    "type": "source"
  },
  "app/experiments/*.rb": {
    "related": "ee/app/experiments/ee/{}.rb",
    "type": "source"
  },
  "app/finders/*.rb": {
    "related": "ee/app/finders/ee/{}.rb",
    "type": "source"
  },
  "app/graphql/*.rb": {
    "related": "ee/app/graphql/ee/{}.rb",
    "type": "source"
  },
  "app/helpers/*.rb": {
    "related": "ee/app/helpers/ee/{}.rb",
    "type": "source"
  },
  "app/mailers/*.rb": {
    "related": "ee/app/mailers/ee/{}.rb",
    "type": "source"
  },
  "app/models/*.rb": {
    "related": "ee/app/models/ee/{}.rb",
    "type": "source"
  },
  "app/policies/*.rb": {
    "related": "ee/app/policies/ee/{}.rb",
    "type": "source"
  },
  "app/presenters/*.rb": {
    "related": "ee/app/presenters/ee/{}.rb",
    "type": "source"
  },
  "app/serializers/*.rb": {
    "related": "ee/app/serializers/ee/{}.rb",
    "type": "source"
  },
  "app/services/*.rb": {
    "related": "ee/app/services/ee/{}.rb",
    "type": "source"
  },
  "app/uploaders/*.rb": {
    "related": "ee/app/uploaders/ee/{}.rb",
    "type": "source"
  },
  "app/validators/*.rb": {
    "related": "ee/app/validators/ee/{}.rb",
    "type": "source"
  },
  "app/views/*.rb": {
    "related": "ee/app/views/ee/{}.rb",
    "type": "source"
  },
  "app/workers/*.rb": {
    "related": "ee/app/workers/ee/{}.rb",
    "type": "source"
  },
  "app/*.rb": {
    "alternate": "spec/{}_spec.rb",
    "type": "source"
  },
  "spec/*_spec.rb": {
    "alternate": "app/{}.rb",
    "type": "test"
  },
  "lib/*.rb": {
    "alternate": "spec/lib/{}_spec.rb",
    "type": "source"
  },
  "spec/lib/*_spec.rb": {
    "alternate": "lib/{}.rb",
    "type": "test"
  },
  "lib/api/*.rb": {
    "alternate": "spec/requests/api/{}_spec.rb",
    "type": "source"
  },
  "spec/requests/api/*_spec.rb": {
    "alternate": "lib/api/{}.rb",
    "type": "test"
  },
  "rubocop/cop/*.rb": {
    "alternate": "spec/rubocop/cop/{}_spec.rb",
    "type": "source"
  },
  "spec/rubocop/cop/*_spec.rb": {
    "alternate": "rubocop/cop/{}.rb",
    "type": "test"
  },
  "ee/lib/api/*.rb": {
    "alternate": "ee/spec/requests/api/{}_spec.rb",
    "type": "source"
  },
  "ee/spec/requests/api/*_spec.rb": {
    "alternate": "ee/lib/api/{}.rb",
    "type": "test"
  },
  "ee/app/*.rb": {
    "alternate": "ee/spec/{}_spec.rb",
    "type": "source"
  },
  "ee/spec/*_spec.rb": {
    "alternate": "ee/app/{}.rb",
    "type": "test"
  },
  "ee/lib/*.rb": {
    "alternate": "ee/spec/lib/{}_spec.rb",
    "type": "source"
  },
  "ee/spec/lib/*_spec.rb": {
    "alternate": "ee/lib/{}.rb",
    "type": "test"
  },
  "app/assets/javascripts/*.js": {
    "alternate": "spec/frontend/{}_spec.js",
    "type": "source"
  },
  "app/assets/javascripts/*.vue": {
    "alternate": "spec/frontend/{}_spec.js",
    "type": "source"
  },
  "spec/frontend/*_spec.js": {
    "alternate": ["app/assets/javascripts/{}.vue", "app/assets/javascripts/{}.js"],
    "type": "test"
  },
  "ee/app/assets/javascripts/*.js": {
    "alternate": "ee/spec/frontend/{}_spec.js",
    "type": "source"
  },
  "ee/app/assets/javascripts/*.vue": {
    "alternate": "ee/spec/frontend/{}_spec.js",
    "type": "source"
  },
  "ee/spec/frontend/*_spec.js": {
    "alternate": ["ee/app/assets/javascripts/{}.vue", "ee/app/assets/javascripts/{}.js"],
    "type": "test"
  },
  "*.rb": {"dispatch": "bundle exec rubocop {file}"},
  "*_spec.rb": {"dispatch": "bundle exec rspec {file}"}
}