@storm-software/workspace-tools 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +136 -0
- package/config/nx.json +165 -0
- package/executors.json +10 -0
- package/generators.json +10 -0
- package/package.json +46 -0
- package/src/executors/build/executor.d.ts +34 -0
- package/src/executors/build/executor.js +51 -0
- package/src/executors/build/executor.js.map +1 -0
- package/src/executors/build/get-config.d.ts +40 -0
- package/src/executors/build/get-config.js +45 -0
- package/src/executors/build/get-config.js.map +1 -0
- package/src/executors/build/hasher.d.ts +8 -0
- package/src/executors/build/hasher.js +15 -0
- package/src/executors/build/hasher.js.map +1 -0
- package/src/executors/build/schema.d.ts +1 -0
- package/src/executors/build/schema.json +9 -0
- package/src/generators/preset/files/.alexignore +4 -0
- package/src/generators/preset/files/.alexrc +39 -0
- package/src/generators/preset/files/.all-contributorsrc.template +34 -0
- package/src/generators/preset/files/.editorconfig +454 -0
- package/src/generators/preset/files/.env.template +64 -0
- package/src/generators/preset/files/.eslintrc.json +123 -0
- package/src/generators/preset/files/.gitattributes +43 -0
- package/src/generators/preset/files/.github/.nvmrc +1 -0
- package/src/generators/preset/files/.github/CODEOWNERS +1 -0
- package/src/generators/preset/files/.github/CODE_OF_CONDUCT.md +125 -0
- package/src/generators/preset/files/.github/CONTRIBUTING.md.template +15 -0
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/bug-report.yml.template +71 -0
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/documentation.yml.template +56 -0
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/feature-request.yml.template +63 -0
- package/src/generators/preset/files/.github/PULL_REQUEST_TEMPLATE.md.template +39 -0
- package/src/generators/preset/files/.github/SECURITY.md +9 -0
- package/src/generators/preset/files/.github/actions/node/action.yaml +42 -0
- package/src/generators/preset/files/.github/codecov.yml +29 -0
- package/src/generators/preset/files/.github/labels.yml +78 -0
- package/src/generators/preset/files/.github/renovate.json.template +55 -0
- package/src/generators/preset/files/.github/stale.yml +50 -0
- package/src/generators/preset/files/.github/workflows/ci.yml +131 -0
- package/src/generators/preset/files/.github/workflows/codeql.yml +81 -0
- package/src/generators/preset/files/.github/workflows/cr.yml +18 -0
- package/src/generators/preset/files/.github/workflows/documentation.yml.template +85 -0
- package/src/generators/preset/files/.github/workflows/git-guardian.yml +21 -0
- package/src/generators/preset/files/.github/workflows/greetings.yml +24 -0
- package/src/generators/preset/files/.github/workflows/labels.yml +30 -0
- package/src/generators/preset/files/.github/workflows/lock.yml +29 -0
- package/src/generators/preset/files/.github/workflows/nextjs-bundle-analysis.yml +139 -0
- package/src/generators/preset/files/.husky/commit-msg +4 -0
- package/src/generators/preset/files/.husky/post-checkout +6 -0
- package/src/generators/preset/files/.husky/post-merge +6 -0
- package/src/generators/preset/files/.husky/pre-commit +5 -0
- package/src/generators/preset/files/.husky/pre-push +3 -0
- package/src/generators/preset/files/.log4brains.yml +5 -0
- package/src/generators/preset/files/.markdownlint.json +25 -0
- package/src/generators/preset/files/.verdaccio/config.yml.template +40 -0
- package/src/generators/preset/files/.vscode/cspell.json +3 -0
- package/src/generators/preset/files/.vscode/extensions.json +14 -0
- package/src/generators/preset/files/.vscode/launch.json +39 -0
- package/src/generators/preset/files/.vscode/settings.json +300 -0
- package/src/generators/preset/files/.vscode/tasks.json +19 -0
- package/src/generators/preset/files/LICENSE +201 -0
- package/src/generators/preset/files/README.md.template +270 -0
- package/src/generators/preset/files/commitlint.config.d.ts +2 -0
- package/src/generators/preset/files/commitlint.config.js +3 -0
- package/src/generators/preset/files/commitlint.config.js.map +1 -0
- package/src/generators/preset/files/jest.config.d.ts +47 -0
- package/src/generators/preset/files/jest.config.js +58 -0
- package/src/generators/preset/files/jest.config.js.map +1 -0
- package/src/generators/preset/files/pnpm-workspace.yaml +4 -0
- package/src/generators/preset/files/src/index.ts.template +1 -0
- package/src/generators/preset/files/tsconfig.base.json.template +15 -0
- package/src/generators/preset/generator.d.ts +3 -0
- package/src/generators/preset/generator.js +148 -0
- package/src/generators/preset/generator.js.map +1 -0
- package/src/generators/preset/schema.d.ts +3 -0
- package/src/generators/preset/schema.json +18 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +5 -0
- package/src/index.js.map +1 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"projectName": "<%= name %>",
|
|
3
|
+
"projectOwner": "sullivanpj",
|
|
4
|
+
"repoType": "github",
|
|
5
|
+
"repoHost": "https://github.com",
|
|
6
|
+
"files": [
|
|
7
|
+
"README.md"
|
|
8
|
+
],
|
|
9
|
+
"imageSize": 100,
|
|
10
|
+
"commit": true,
|
|
11
|
+
"commitConvention": "angular",
|
|
12
|
+
"contributors": [
|
|
13
|
+
{
|
|
14
|
+
"login": "sullivanpj",
|
|
15
|
+
"name": "Patrick Sullivan",
|
|
16
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/99053093?v=4",
|
|
17
|
+
"profile": "http://www.patsullivan.dev/",
|
|
18
|
+
"contributions": [
|
|
19
|
+
"tool"
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"login": "tbenning",
|
|
24
|
+
"name": "Tyler Benning",
|
|
25
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/7265547?v=4",
|
|
26
|
+
"profile": "https://tylerbenning.com/",
|
|
27
|
+
"contributions": [
|
|
28
|
+
"design"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"contributorsPerLine": 7,
|
|
33
|
+
"linkToUsage": true
|
|
34
|
+
}
|
|
@@ -0,0 +1,454 @@
|
|
|
1
|
+
# See http://EditorConfig.org for more information about .editorconfig files.
|
|
2
|
+
|
|
3
|
+
##########################################
|
|
4
|
+
# Common Settings
|
|
5
|
+
##########################################
|
|
6
|
+
|
|
7
|
+
# This file is the top-most EditorConfig file
|
|
8
|
+
root = true
|
|
9
|
+
|
|
10
|
+
# All Files
|
|
11
|
+
[*]
|
|
12
|
+
charset = utf-8
|
|
13
|
+
indent_style = space
|
|
14
|
+
indent_size = 4
|
|
15
|
+
insert_final_newline = true
|
|
16
|
+
trim_trailing_whitespace = true
|
|
17
|
+
|
|
18
|
+
##########################################
|
|
19
|
+
# File Extension Settings
|
|
20
|
+
##########################################
|
|
21
|
+
|
|
22
|
+
# Visual Studio Solution Files
|
|
23
|
+
[*.sln]
|
|
24
|
+
indent_style = tab
|
|
25
|
+
|
|
26
|
+
# Visual Studio XML Project Files
|
|
27
|
+
[*.{csproj,vbproj,vcxproj.filters,proj,projitems,shproj}]
|
|
28
|
+
indent_size = 2
|
|
29
|
+
|
|
30
|
+
# XML Configuration Files
|
|
31
|
+
[*.{xml,config,props,targets,nuspec,resx,ruleset,vsixmanifest,vsct}]
|
|
32
|
+
indent_size = 2
|
|
33
|
+
|
|
34
|
+
# JSON Files
|
|
35
|
+
[*.{json,json5,webmanifest}]
|
|
36
|
+
indent_size = 2
|
|
37
|
+
|
|
38
|
+
# YAML Files
|
|
39
|
+
[*.{yml,yaml}]
|
|
40
|
+
indent_size = 2
|
|
41
|
+
|
|
42
|
+
# Markdown Files
|
|
43
|
+
[*.md]
|
|
44
|
+
max_line_length = off
|
|
45
|
+
trim_trailing_whitespace = false
|
|
46
|
+
|
|
47
|
+
# Mustache Files
|
|
48
|
+
[*.mustache]
|
|
49
|
+
max_line_length = off
|
|
50
|
+
insert_final_newline = false
|
|
51
|
+
|
|
52
|
+
# Web Files
|
|
53
|
+
[*.{htm,html,js,jsm,ts,tsx,css,sass,scss,less,pcss,svg,vue}]
|
|
54
|
+
indent_size = 2
|
|
55
|
+
|
|
56
|
+
# Batch Files
|
|
57
|
+
[*.{cmd,bat}]
|
|
58
|
+
end_of_line = crlf
|
|
59
|
+
|
|
60
|
+
# Bash Files
|
|
61
|
+
[*.sh]
|
|
62
|
+
end_of_line = lf
|
|
63
|
+
|
|
64
|
+
# Makefiles
|
|
65
|
+
[Makefile]
|
|
66
|
+
indent_style = tab
|
|
67
|
+
|
|
68
|
+
##########################################
|
|
69
|
+
# Default .NET Code Style Severities
|
|
70
|
+
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/configuration-options#scope
|
|
71
|
+
##########################################
|
|
72
|
+
|
|
73
|
+
[*.{cs,csx,cake,vb,vbx}]
|
|
74
|
+
# Default Severity for all .NET Code Style rules below
|
|
75
|
+
dotnet_analyzer_diagnostic.severity = warning
|
|
76
|
+
|
|
77
|
+
##########################################
|
|
78
|
+
# Language Rules
|
|
79
|
+
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/language-rules
|
|
80
|
+
##########################################
|
|
81
|
+
|
|
82
|
+
# .NET Style Rules
|
|
83
|
+
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/language-rules#net-style-rules
|
|
84
|
+
[*.{cs,csx,cake,vb,vbx}]
|
|
85
|
+
# "this." and "Me." qualifiers
|
|
86
|
+
dotnet_style_qualification_for_field = true:warning
|
|
87
|
+
dotnet_style_qualification_for_property = true:warning
|
|
88
|
+
dotnet_style_qualification_for_method = true:warning
|
|
89
|
+
dotnet_style_qualification_for_event = true:warning
|
|
90
|
+
# Language keywords instead of framework type names for type references
|
|
91
|
+
dotnet_style_predefined_type_for_locals_parameters_members = true:warning
|
|
92
|
+
dotnet_style_predefined_type_for_member_access = true:warning
|
|
93
|
+
# Modifier preferences
|
|
94
|
+
dotnet_style_require_accessibility_modifiers = always:warning
|
|
95
|
+
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:warning
|
|
96
|
+
visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:warning
|
|
97
|
+
dotnet_style_readonly_field = true:warning
|
|
98
|
+
# Parentheses preferences
|
|
99
|
+
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:warning
|
|
100
|
+
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:warning
|
|
101
|
+
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:warning
|
|
102
|
+
dotnet_style_parentheses_in_other_operators = never_if_unnecessary:warning
|
|
103
|
+
# Expression-level preferences
|
|
104
|
+
dotnet_style_object_initializer = true:warning
|
|
105
|
+
dotnet_style_collection_initializer = true:warning
|
|
106
|
+
dotnet_style_explicit_tuple_names = true:warning
|
|
107
|
+
dotnet_style_prefer_inferred_tuple_names = true:warning
|
|
108
|
+
dotnet_style_prefer_inferred_anonymous_type_member_names = true:warning
|
|
109
|
+
dotnet_style_prefer_auto_properties = true:warning
|
|
110
|
+
dotnet_style_prefer_conditional_expression_over_assignment = false:suggestion
|
|
111
|
+
dotnet_diagnostic.IDE0045.severity = suggestion
|
|
112
|
+
dotnet_style_prefer_conditional_expression_over_return = false:suggestion
|
|
113
|
+
dotnet_diagnostic.IDE0046.severity = suggestion
|
|
114
|
+
dotnet_style_prefer_compound_assignment = true:warning
|
|
115
|
+
dotnet_style_prefer_simplified_interpolation = true:warning
|
|
116
|
+
dotnet_style_prefer_simplified_boolean_expressions = true:warning
|
|
117
|
+
# Null-checking preferences
|
|
118
|
+
dotnet_style_coalesce_expression = true:warning
|
|
119
|
+
dotnet_style_null_propagation = true:warning
|
|
120
|
+
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:warning
|
|
121
|
+
# File header preferences
|
|
122
|
+
# file_header_template = <copyright file="{fileName}" company="PROJECT-AUTHOR">\n© PROJECT-AUTHOR\n</copyright>
|
|
123
|
+
# If you use StyleCop, you'll need to disable SA1636: File header copyright text should match.
|
|
124
|
+
# dotnet_diagnostic.SA1636.severity = none
|
|
125
|
+
# Undocumented
|
|
126
|
+
dotnet_style_operator_placement_when_wrapping = end_of_line:warning
|
|
127
|
+
csharp_style_prefer_null_check_over_type_check = true:warning
|
|
128
|
+
dotnet_style_namespace_match_folder = true:suggestion
|
|
129
|
+
dotnet_diagnostic.IDE0130.severity = suggestion
|
|
130
|
+
|
|
131
|
+
# C# Style Rules
|
|
132
|
+
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/language-rules#c-style-rules
|
|
133
|
+
[*.{cs,csx,cake}]
|
|
134
|
+
# 'var' preferences
|
|
135
|
+
csharp_style_var_for_built_in_types = true:warning
|
|
136
|
+
csharp_style_var_when_type_is_apparent = true:warning
|
|
137
|
+
csharp_style_var_elsewhere = true:warning
|
|
138
|
+
# Expression-bodied members
|
|
139
|
+
csharp_style_expression_bodied_methods = true:warning
|
|
140
|
+
csharp_style_expression_bodied_constructors = true:warning
|
|
141
|
+
csharp_style_expression_bodied_operators = true:warning
|
|
142
|
+
csharp_style_expression_bodied_properties = true:warning
|
|
143
|
+
csharp_style_expression_bodied_indexers = true:warning
|
|
144
|
+
csharp_style_expression_bodied_accessors = true:warning
|
|
145
|
+
csharp_style_expression_bodied_lambdas = true:warning
|
|
146
|
+
csharp_style_expression_bodied_local_functions = true:warning
|
|
147
|
+
# Pattern matching preferences
|
|
148
|
+
csharp_style_pattern_matching_over_is_with_cast_check = true:warning
|
|
149
|
+
csharp_style_pattern_matching_over_as_with_null_check = true:warning
|
|
150
|
+
csharp_style_prefer_switch_expression = true:warning
|
|
151
|
+
csharp_style_prefer_pattern_matching = true:warning
|
|
152
|
+
csharp_style_prefer_not_pattern = true:warning
|
|
153
|
+
# Expression-level preferences
|
|
154
|
+
csharp_style_inlined_variable_declaration = true:warning
|
|
155
|
+
csharp_prefer_simple_default_expression = true:warning
|
|
156
|
+
csharp_style_pattern_local_over_anonymous_function = true:warning
|
|
157
|
+
csharp_style_deconstructed_variable_declaration = true:warning
|
|
158
|
+
csharp_style_prefer_index_operator = true:warning
|
|
159
|
+
csharp_style_prefer_range_operator = true:warning
|
|
160
|
+
csharp_style_implicit_object_creation_when_type_is_apparent = true:warning
|
|
161
|
+
# "Null" checking preferences
|
|
162
|
+
csharp_style_throw_expression = true:warning
|
|
163
|
+
csharp_style_conditional_delegate_call = true:warning
|
|
164
|
+
# Code block preferences
|
|
165
|
+
csharp_prefer_braces = true:warning
|
|
166
|
+
csharp_prefer_simple_using_statement = true:suggestion
|
|
167
|
+
dotnet_diagnostic.IDE0063.severity = suggestion
|
|
168
|
+
# 'using' directive preferences
|
|
169
|
+
csharp_using_directive_placement = inside_namespace:warning
|
|
170
|
+
# Modifier preferences
|
|
171
|
+
csharp_prefer_static_local_function = true:warning
|
|
172
|
+
# Undocumented
|
|
173
|
+
csharp_style_namespace_declarations = file_scoped:warning
|
|
174
|
+
|
|
175
|
+
##########################################
|
|
176
|
+
# Unnecessary Code Rules
|
|
177
|
+
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/unnecessary-code-rules
|
|
178
|
+
##########################################
|
|
179
|
+
|
|
180
|
+
# .NET Unnecessary code rules
|
|
181
|
+
[*.{cs,csx,cake,vb,vbx}]
|
|
182
|
+
dotnet_code_quality_unused_parameters = all:warning
|
|
183
|
+
dotnet_remove_unnecessary_suppression_exclusions = none:warning
|
|
184
|
+
|
|
185
|
+
# C# Unnecessary code rules
|
|
186
|
+
[*.{cs,csx,cake}]
|
|
187
|
+
csharp_style_unused_value_expression_statement_preference = discard_variable:suggestion
|
|
188
|
+
dotnet_diagnostic.IDE0058.severity = suggestion
|
|
189
|
+
csharp_style_unused_value_assignment_preference = discard_variable:suggestion
|
|
190
|
+
dotnet_diagnostic.IDE0059.severity = suggestion
|
|
191
|
+
|
|
192
|
+
##########################################
|
|
193
|
+
# Formatting Rules
|
|
194
|
+
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules
|
|
195
|
+
##########################################
|
|
196
|
+
|
|
197
|
+
# .NET formatting rules
|
|
198
|
+
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules#net-formatting-rules
|
|
199
|
+
[*.{cs,csx,cake,vb,vbx}]
|
|
200
|
+
# Organize using directives
|
|
201
|
+
dotnet_sort_system_directives_first = true
|
|
202
|
+
dotnet_separate_import_directive_groups = false
|
|
203
|
+
|
|
204
|
+
# C# formatting rules
|
|
205
|
+
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules#c-formatting-rules
|
|
206
|
+
[*.{cs,csx,cake}]
|
|
207
|
+
# Newline options
|
|
208
|
+
# https://docs.microsoft.com/visualstudio/ide/editorconfig-formatting-conventions#new-line-options
|
|
209
|
+
csharp_new_line_before_open_brace = all
|
|
210
|
+
csharp_new_line_before_else = true
|
|
211
|
+
csharp_new_line_before_catch = true
|
|
212
|
+
csharp_new_line_before_finally = true
|
|
213
|
+
csharp_new_line_before_members_in_object_initializers = true
|
|
214
|
+
csharp_new_line_before_members_in_anonymous_types = true
|
|
215
|
+
csharp_new_line_between_query_expression_clauses = true
|
|
216
|
+
# Indentation options
|
|
217
|
+
# https://docs.microsoft.com/visualstudio/ide/editorconfig-formatting-conventions#indentation-options
|
|
218
|
+
csharp_indent_case_contents = true
|
|
219
|
+
csharp_indent_switch_labels = true
|
|
220
|
+
csharp_indent_labels = no_change
|
|
221
|
+
csharp_indent_block_contents = true
|
|
222
|
+
csharp_indent_braces = false
|
|
223
|
+
csharp_indent_case_contents_when_block = false
|
|
224
|
+
# Spacing options
|
|
225
|
+
# https://docs.microsoft.com/visualstudio/ide/editorconfig-formatting-conventions#spacing-options
|
|
226
|
+
csharp_space_after_cast = false
|
|
227
|
+
csharp_space_after_keywords_in_control_flow_statements = true
|
|
228
|
+
csharp_space_between_parentheses = false
|
|
229
|
+
csharp_space_before_colon_in_inheritance_clause = true
|
|
230
|
+
csharp_space_after_colon_in_inheritance_clause = true
|
|
231
|
+
csharp_space_around_binary_operators = before_and_after
|
|
232
|
+
csharp_space_between_method_declaration_parameter_list_parentheses = false
|
|
233
|
+
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
|
|
234
|
+
csharp_space_between_method_declaration_name_and_open_parenthesis = false
|
|
235
|
+
csharp_space_between_method_call_parameter_list_parentheses = false
|
|
236
|
+
csharp_space_between_method_call_empty_parameter_list_parentheses = false
|
|
237
|
+
csharp_space_between_method_call_name_and_opening_parenthesis = false
|
|
238
|
+
csharp_space_after_comma = true
|
|
239
|
+
csharp_space_before_comma = false
|
|
240
|
+
csharp_space_after_dot = false
|
|
241
|
+
csharp_space_before_dot = false
|
|
242
|
+
csharp_space_after_semicolon_in_for_statement = true
|
|
243
|
+
csharp_space_before_semicolon_in_for_statement = false
|
|
244
|
+
csharp_space_around_declaration_statements = false
|
|
245
|
+
csharp_space_before_open_square_brackets = false
|
|
246
|
+
csharp_space_between_empty_square_brackets = false
|
|
247
|
+
csharp_space_between_square_brackets = false
|
|
248
|
+
# Wrap options
|
|
249
|
+
# https://docs.microsoft.com/visualstudio/ide/editorconfig-formatting-conventions#wrap-options
|
|
250
|
+
csharp_preserve_single_line_statements = false
|
|
251
|
+
csharp_preserve_single_line_blocks = true
|
|
252
|
+
|
|
253
|
+
##########################################
|
|
254
|
+
# .NET Naming Rules
|
|
255
|
+
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/naming-rules
|
|
256
|
+
##########################################
|
|
257
|
+
|
|
258
|
+
[*.{cs,csx,cake,vb,vbx}]
|
|
259
|
+
|
|
260
|
+
##########################################
|
|
261
|
+
# Styles
|
|
262
|
+
##########################################
|
|
263
|
+
|
|
264
|
+
# camel_case_style - Define the camelCase style
|
|
265
|
+
dotnet_naming_style.camel_case_style.capitalization = camel_case
|
|
266
|
+
# pascal_case_style - Define the PascalCase style
|
|
267
|
+
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
|
|
268
|
+
# first_upper_style - The first character must start with an upper-case character
|
|
269
|
+
dotnet_naming_style.first_upper_style.capitalization = first_word_upper
|
|
270
|
+
# prefix_interface_with_i_style - Interfaces must be PascalCase and the first character of an interface must be an 'I'
|
|
271
|
+
dotnet_naming_style.prefix_interface_with_i_style.capitalization = pascal_case
|
|
272
|
+
dotnet_naming_style.prefix_interface_with_i_style.required_prefix = I
|
|
273
|
+
# prefix_type_parameters_with_t_style - Generic Type Parameters must be PascalCase and the first character must be a 'T'
|
|
274
|
+
dotnet_naming_style.prefix_type_parameters_with_t_style.capitalization = pascal_case
|
|
275
|
+
dotnet_naming_style.prefix_type_parameters_with_t_style.required_prefix = T
|
|
276
|
+
# disallowed_style - Anything that has this style applied is marked as disallowed
|
|
277
|
+
dotnet_naming_style.disallowed_style.capitalization = pascal_case
|
|
278
|
+
dotnet_naming_style.disallowed_style.required_prefix = ____RULE_VIOLATION____
|
|
279
|
+
dotnet_naming_style.disallowed_style.required_suffix = ____RULE_VIOLATION____
|
|
280
|
+
# internal_error_style - This style should never occur... if it does, it indicates a bug in file or in the parser using the file
|
|
281
|
+
dotnet_naming_style.internal_error_style.capitalization = pascal_case
|
|
282
|
+
dotnet_naming_style.internal_error_style.required_prefix = ____INTERNAL_ERROR____
|
|
283
|
+
dotnet_naming_style.internal_error_style.required_suffix = ____INTERNAL_ERROR____
|
|
284
|
+
|
|
285
|
+
##########################################
|
|
286
|
+
# .NET Design Guideline Field Naming Rules
|
|
287
|
+
# Naming rules for fields follow the .NET Framework design guidelines
|
|
288
|
+
# https://docs.microsoft.com/dotnet/standard/design-guidelines/index
|
|
289
|
+
##########################################
|
|
290
|
+
|
|
291
|
+
# All public/protected/protected_internal constant fields must be PascalCase
|
|
292
|
+
# https://docs.microsoft.com/dotnet/standard/design-guidelines/field
|
|
293
|
+
dotnet_naming_symbols.public_protected_constant_fields_group.applicable_accessibilities = public, protected, protected_internal
|
|
294
|
+
dotnet_naming_symbols.public_protected_constant_fields_group.required_modifiers = const
|
|
295
|
+
dotnet_naming_symbols.public_protected_constant_fields_group.applicable_kinds = field
|
|
296
|
+
dotnet_naming_rule.public_protected_constant_fields_must_be_pascal_case_rule.symbols = public_protected_constant_fields_group
|
|
297
|
+
dotnet_naming_rule.public_protected_constant_fields_must_be_pascal_case_rule.style = pascal_case_style
|
|
298
|
+
dotnet_naming_rule.public_protected_constant_fields_must_be_pascal_case_rule.severity = warning
|
|
299
|
+
|
|
300
|
+
# All public/protected/protected_internal static readonly fields must be PascalCase
|
|
301
|
+
# https://docs.microsoft.com/dotnet/standard/design-guidelines/field
|
|
302
|
+
dotnet_naming_symbols.public_protected_static_readonly_fields_group.applicable_accessibilities = public, protected, protected_internal
|
|
303
|
+
dotnet_naming_symbols.public_protected_static_readonly_fields_group.required_modifiers = static, readonly
|
|
304
|
+
dotnet_naming_symbols.public_protected_static_readonly_fields_group.applicable_kinds = field
|
|
305
|
+
dotnet_naming_rule.public_protected_static_readonly_fields_must_be_pascal_case_rule.symbols = public_protected_static_readonly_fields_group
|
|
306
|
+
dotnet_naming_rule.public_protected_static_readonly_fields_must_be_pascal_case_rule.style = pascal_case_style
|
|
307
|
+
dotnet_naming_rule.public_protected_static_readonly_fields_must_be_pascal_case_rule.severity = warning
|
|
308
|
+
|
|
309
|
+
# No other public/protected/protected_internal fields are allowed
|
|
310
|
+
# https://docs.microsoft.com/dotnet/standard/design-guidelines/field
|
|
311
|
+
dotnet_naming_symbols.other_public_protected_fields_group.applicable_accessibilities = public, protected, protected_internal
|
|
312
|
+
dotnet_naming_symbols.other_public_protected_fields_group.applicable_kinds = field
|
|
313
|
+
dotnet_naming_rule.other_public_protected_fields_disallowed_rule.symbols = other_public_protected_fields_group
|
|
314
|
+
dotnet_naming_rule.other_public_protected_fields_disallowed_rule.style = disallowed_style
|
|
315
|
+
dotnet_naming_rule.other_public_protected_fields_disallowed_rule.severity = error
|
|
316
|
+
|
|
317
|
+
##########################################
|
|
318
|
+
# StyleCop Field Naming Rules
|
|
319
|
+
# Naming rules for fields follow the StyleCop analyzers
|
|
320
|
+
# This does not override any rules using disallowed_style above
|
|
321
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers
|
|
322
|
+
##########################################
|
|
323
|
+
|
|
324
|
+
# All constant fields must be PascalCase
|
|
325
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1303.md
|
|
326
|
+
dotnet_naming_symbols.stylecop_constant_fields_group.applicable_accessibilities = public, internal, protected_internal, protected, private_protected, private
|
|
327
|
+
dotnet_naming_symbols.stylecop_constant_fields_group.required_modifiers = const
|
|
328
|
+
dotnet_naming_symbols.stylecop_constant_fields_group.applicable_kinds = field
|
|
329
|
+
dotnet_naming_rule.stylecop_constant_fields_must_be_pascal_case_rule.symbols = stylecop_constant_fields_group
|
|
330
|
+
dotnet_naming_rule.stylecop_constant_fields_must_be_pascal_case_rule.style = pascal_case_style
|
|
331
|
+
dotnet_naming_rule.stylecop_constant_fields_must_be_pascal_case_rule.severity = warning
|
|
332
|
+
|
|
333
|
+
# All static readonly fields must be PascalCase
|
|
334
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1311.md
|
|
335
|
+
dotnet_naming_symbols.stylecop_static_readonly_fields_group.applicable_accessibilities = public, internal, protected_internal, protected, private_protected, private
|
|
336
|
+
dotnet_naming_symbols.stylecop_static_readonly_fields_group.required_modifiers = static, readonly
|
|
337
|
+
dotnet_naming_symbols.stylecop_static_readonly_fields_group.applicable_kinds = field
|
|
338
|
+
dotnet_naming_rule.stylecop_static_readonly_fields_must_be_pascal_case_rule.symbols = stylecop_static_readonly_fields_group
|
|
339
|
+
dotnet_naming_rule.stylecop_static_readonly_fields_must_be_pascal_case_rule.style = pascal_case_style
|
|
340
|
+
dotnet_naming_rule.stylecop_static_readonly_fields_must_be_pascal_case_rule.severity = warning
|
|
341
|
+
|
|
342
|
+
# No non-private instance fields are allowed
|
|
343
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1401.md
|
|
344
|
+
dotnet_naming_symbols.stylecop_fields_must_be_private_group.applicable_accessibilities = public, internal, protected_internal, protected, private_protected
|
|
345
|
+
dotnet_naming_symbols.stylecop_fields_must_be_private_group.applicable_kinds = field
|
|
346
|
+
dotnet_naming_rule.stylecop_instance_fields_must_be_private_rule.symbols = stylecop_fields_must_be_private_group
|
|
347
|
+
dotnet_naming_rule.stylecop_instance_fields_must_be_private_rule.style = disallowed_style
|
|
348
|
+
dotnet_naming_rule.stylecop_instance_fields_must_be_private_rule.severity = error
|
|
349
|
+
|
|
350
|
+
# Private fields must be camelCase
|
|
351
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1306.md
|
|
352
|
+
dotnet_naming_symbols.stylecop_private_fields_group.applicable_accessibilities = private
|
|
353
|
+
dotnet_naming_symbols.stylecop_private_fields_group.applicable_kinds = field
|
|
354
|
+
dotnet_naming_rule.stylecop_private_fields_must_be_camel_case_rule.symbols = stylecop_private_fields_group
|
|
355
|
+
dotnet_naming_rule.stylecop_private_fields_must_be_camel_case_rule.style = camel_case_style
|
|
356
|
+
dotnet_naming_rule.stylecop_private_fields_must_be_camel_case_rule.severity = warning
|
|
357
|
+
|
|
358
|
+
# Local variables must be camelCase
|
|
359
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1312.md
|
|
360
|
+
dotnet_naming_symbols.stylecop_local_fields_group.applicable_accessibilities = local
|
|
361
|
+
dotnet_naming_symbols.stylecop_local_fields_group.applicable_kinds = local
|
|
362
|
+
dotnet_naming_rule.stylecop_local_fields_must_be_camel_case_rule.symbols = stylecop_local_fields_group
|
|
363
|
+
dotnet_naming_rule.stylecop_local_fields_must_be_camel_case_rule.style = camel_case_style
|
|
364
|
+
dotnet_naming_rule.stylecop_local_fields_must_be_camel_case_rule.severity = silent
|
|
365
|
+
|
|
366
|
+
# This rule should never fire. However, it's included for at least two purposes:
|
|
367
|
+
# First, it helps to understand, reason about, and root-case certain types of issues, such as bugs in .editorconfig parsers.
|
|
368
|
+
# Second, it helps to raise immediate awareness if a new field type is added (as occurred recently in C#).
|
|
369
|
+
dotnet_naming_symbols.sanity_check_uncovered_field_case_group.applicable_accessibilities = *
|
|
370
|
+
dotnet_naming_symbols.sanity_check_uncovered_field_case_group.applicable_kinds = field
|
|
371
|
+
dotnet_naming_rule.sanity_check_uncovered_field_case_rule.symbols = sanity_check_uncovered_field_case_group
|
|
372
|
+
dotnet_naming_rule.sanity_check_uncovered_field_case_rule.style = internal_error_style
|
|
373
|
+
dotnet_naming_rule.sanity_check_uncovered_field_case_rule.severity = error
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
##########################################
|
|
377
|
+
# Other Naming Rules
|
|
378
|
+
##########################################
|
|
379
|
+
|
|
380
|
+
# All of the following must be PascalCase:
|
|
381
|
+
# - Namespaces
|
|
382
|
+
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-namespaces
|
|
383
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1300.md
|
|
384
|
+
# - Classes and Enumerations
|
|
385
|
+
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces
|
|
386
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1300.md
|
|
387
|
+
# - Delegates
|
|
388
|
+
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces#names-of-common-types
|
|
389
|
+
# - Constructors, Properties, Events, Methods
|
|
390
|
+
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-type-members
|
|
391
|
+
dotnet_naming_symbols.element_group.applicable_kinds = namespace, class, enum, struct, delegate, event, method, property
|
|
392
|
+
dotnet_naming_rule.element_rule.symbols = element_group
|
|
393
|
+
dotnet_naming_rule.element_rule.style = pascal_case_style
|
|
394
|
+
dotnet_naming_rule.element_rule.severity = warning
|
|
395
|
+
|
|
396
|
+
# Interfaces use PascalCase and are prefixed with uppercase 'I'
|
|
397
|
+
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces
|
|
398
|
+
dotnet_naming_symbols.interface_group.applicable_kinds = interface
|
|
399
|
+
dotnet_naming_rule.interface_rule.symbols = interface_group
|
|
400
|
+
dotnet_naming_rule.interface_rule.style = prefix_interface_with_i_style
|
|
401
|
+
dotnet_naming_rule.interface_rule.severity = warning
|
|
402
|
+
|
|
403
|
+
# Generics Type Parameters use PascalCase and are prefixed with uppercase 'T'
|
|
404
|
+
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces
|
|
405
|
+
dotnet_naming_symbols.type_parameter_group.applicable_kinds = type_parameter
|
|
406
|
+
dotnet_naming_rule.type_parameter_rule.symbols = type_parameter_group
|
|
407
|
+
dotnet_naming_rule.type_parameter_rule.style = prefix_type_parameters_with_t_style
|
|
408
|
+
dotnet_naming_rule.type_parameter_rule.severity = warning
|
|
409
|
+
|
|
410
|
+
# Function parameters use camelCase
|
|
411
|
+
# https://docs.microsoft.com/dotnet/standard/design-guidelines/naming-parameters
|
|
412
|
+
dotnet_naming_symbols.parameters_group.applicable_kinds = parameter
|
|
413
|
+
dotnet_naming_rule.parameters_rule.symbols = parameters_group
|
|
414
|
+
dotnet_naming_rule.parameters_rule.style = camel_case_style
|
|
415
|
+
dotnet_naming_rule.parameters_rule.severity = warning
|
|
416
|
+
|
|
417
|
+
#if (StyleCop)
|
|
418
|
+
##########################################
|
|
419
|
+
# StyleCop
|
|
420
|
+
##########################################
|
|
421
|
+
|
|
422
|
+
[*]
|
|
423
|
+
# SA0001: XML comment analysis is disabled due to project configuration
|
|
424
|
+
# Justification: Comments turned off
|
|
425
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA0001.md
|
|
426
|
+
dotnet_diagnostic.SA0001.severity = none
|
|
427
|
+
|
|
428
|
+
[*.cs]
|
|
429
|
+
# SA1515: Single-line comment should be preceded by blank line.
|
|
430
|
+
# Justification: Comments turned off
|
|
431
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1515.md
|
|
432
|
+
dotnet_diagnostic.SA1515.severity = none
|
|
433
|
+
|
|
434
|
+
# SA1600: A C# code element is missing a documentation header.
|
|
435
|
+
# Justification: Comments turned off
|
|
436
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1600.md
|
|
437
|
+
dotnet_diagnostic.SA1600.severity = none
|
|
438
|
+
|
|
439
|
+
# SA1601: A C# partial element is missing a documentation header.
|
|
440
|
+
# Justification: Comments turned off
|
|
441
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1601.md
|
|
442
|
+
dotnet_diagnostic.SA1601.severity = none
|
|
443
|
+
|
|
444
|
+
# SA1602: An item within a C# enumeration is missing an XML documentation header.
|
|
445
|
+
# Justification: Comments turned off
|
|
446
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1602.md
|
|
447
|
+
dotnet_diagnostic.SA1602.severity = none
|
|
448
|
+
|
|
449
|
+
# SA1633: A C# code file is missing a standard file header.
|
|
450
|
+
# Justification: Comments turned off
|
|
451
|
+
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1633.md
|
|
452
|
+
dotnet_diagnostic.SA1633.severity = none
|
|
453
|
+
|
|
454
|
+
#endif
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
CI=true
|
|
2
|
+
TYPESENSE_API_KEY=xyz
|
|
3
|
+
NODE_OPTIONS="--trace-warnings --heapsnapshot-near-heap-limit=3 --heapsnapshot-signal=SIGTERM"
|
|
4
|
+
|
|
5
|
+
ROOT_HOST=192.168.1.18
|
|
6
|
+
HOST_SERVER=host.docker.internal
|
|
7
|
+
AKKA_STREAMS_KAFKA_TEST_FILE_LOGGING=true
|
|
8
|
+
RUST_BACKTRACE=full
|
|
9
|
+
# PUPPETEER_SKIP_DOWNLOAD=true
|
|
10
|
+
|
|
11
|
+
HS_SERVICE_NAME="@<%= name %>/monorepo"
|
|
12
|
+
# HS_DEBUG=true
|
|
13
|
+
|
|
14
|
+
SENTRY_ORGANIZATION="storm-software"
|
|
15
|
+
SENTRY_PROPERTIES="apps/web/shell"
|
|
16
|
+
|
|
17
|
+
DEFAULT_LOCALE="en_US"
|
|
18
|
+
DEFAULT_TIMEZONE="America/New_York"
|
|
19
|
+
|
|
20
|
+
CI_REPO_OWNER="sullivanpj"
|
|
21
|
+
CI_REPO_WORKER="🤖 Storm Bot"
|
|
22
|
+
CI_REPO_NAME="<%= name %>"
|
|
23
|
+
CI_REPO_URL="https://github.com/storm-software/<%= name %>"
|
|
24
|
+
CI_BRANCH="main"
|
|
25
|
+
CI_PRE_MAJOR=true
|
|
26
|
+
|
|
27
|
+
# OAUTH_GOOGLE_CLIENT_ID=
|
|
28
|
+
# OAUTH_GOOGLE_CLIENT_SECRET=
|
|
29
|
+
# OAUTH_GOOGLE_AUTHORIZATION_ENDPOINT=
|
|
30
|
+
# OAUTH_GOOGLE_TOKEN_ENDPOINT=
|
|
31
|
+
|
|
32
|
+
VIRUS_TOTAL_API_URL="https://www.virustotal.com"
|
|
33
|
+
# VIRUS_TOTAL_API_KEY=
|
|
34
|
+
|
|
35
|
+
UPSTASH_KAFKA_REST_URL="https://fitting-dassie-7031-us1-rest-kafka.upstash.io"
|
|
36
|
+
# UPSTASH_KAFKA_REST_USERNAME=
|
|
37
|
+
# UPSTASH_KAFKA_REST_PASSWORD=
|
|
38
|
+
|
|
39
|
+
PRISMA_GENERATE_DATAPROXY=true
|
|
40
|
+
FORECAST_RUNTIME_MODULE="node_modules/.storm"
|
|
41
|
+
|
|
42
|
+
NO_D1_WARNING=true
|
|
43
|
+
|
|
44
|
+
INFISICAL_ENVIRONMENT="prod"
|
|
45
|
+
|
|
46
|
+
READINESS_CHECK_PATH="/readiness"
|
|
47
|
+
HEALTH_CHECK_PATH="/healthcheck"
|
|
48
|
+
|
|
49
|
+
LOG_LEVEL="debug"
|
|
50
|
+
# LOG_PATH="C:\\Development\\stormstack\\logs"
|
|
51
|
+
|
|
52
|
+
PNPM_VERSION="8.7.4"
|
|
53
|
+
|
|
54
|
+
DEV_EDITOR_ID="vscode"
|
|
55
|
+
DEV_REPO_ROOT="C:\\Development\\<%= name %>"
|
|
56
|
+
|
|
57
|
+
THEME_PRIMARY_COLOR="#1fb2a6"
|
|
58
|
+
THEME_BACKGROUND_COLOR="#1d232a"
|
|
59
|
+
THEME_SUCCESS_COLOR="#087f5b"
|
|
60
|
+
THEME_INFO_COLOR="#0ea5e9"
|
|
61
|
+
THEME_WARNING_COLOR="#fcc419"
|
|
62
|
+
THEME_ERROR_COLOR="#7d1a1a"
|
|
63
|
+
|
|
64
|
+
# NODE_ENV=production
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ignorePatterns": ["**/*", "**/node_modules/**"],
|
|
3
|
+
"plugins": ["@nx"],
|
|
4
|
+
"extends": [
|
|
5
|
+
"@storm-software/linting-tools/eslint/typescript",
|
|
6
|
+
"@storm-software/linting-tools/eslint/javascript",
|
|
7
|
+
"@storm-software/linting-tools/eslint/graphql",
|
|
8
|
+
"@storm-software/linting-tools/eslint/react",
|
|
9
|
+
"@storm-software/linting-tools/eslint/next",
|
|
10
|
+
"@storm-software/linting-tools/eslint/json",
|
|
11
|
+
"@storm-software/linting-tools/eslint/jest"
|
|
12
|
+
],
|
|
13
|
+
"overrides": [
|
|
14
|
+
{
|
|
15
|
+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
16
|
+
"rules": {
|
|
17
|
+
"@nx/enforce-module-boundaries": [
|
|
18
|
+
"error",
|
|
19
|
+
{
|
|
20
|
+
"enforceBuildableLibDependency": true,
|
|
21
|
+
"allow": [],
|
|
22
|
+
"depConstraints": [
|
|
23
|
+
{
|
|
24
|
+
"sourceTag": "*",
|
|
25
|
+
"onlyDependOnLibsWithTags": ["*"]
|
|
26
|
+
},
|
|
27
|
+
/**
|
|
28
|
+
* Platform type dependency rules
|
|
29
|
+
*/
|
|
30
|
+
{
|
|
31
|
+
"sourceTag": "platform:shared",
|
|
32
|
+
"onlyDependOnLibsWithTags": ["platform:shared"]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"sourceTag": "platform:server",
|
|
36
|
+
"onlyDependOnLibsWithTags": [
|
|
37
|
+
"platform:server",
|
|
38
|
+
"platform:shared"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"sourceTag": "platform:client",
|
|
43
|
+
"onlyDependOnLibsWithTags": [
|
|
44
|
+
"platform:client",
|
|
45
|
+
"platform:shared"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"sourceTag": "platform:admin",
|
|
50
|
+
"onlyDependOnLibsWithTags": [
|
|
51
|
+
"platform:admin",
|
|
52
|
+
"platform:client",
|
|
53
|
+
"platform:server",
|
|
54
|
+
"platform:shared"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
/**
|
|
58
|
+
* Scope dependency rules
|
|
59
|
+
*/
|
|
60
|
+
{
|
|
61
|
+
"sourceTag": "scope:core",
|
|
62
|
+
"onlyDependOnLibsWithTags": ["scope:core"]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"sourceTag": "scope:adapters",
|
|
66
|
+
"onlyDependOnLibsWithTags": ["scope:core", "scope:adapters"]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"sourceTag": "scope:tools",
|
|
70
|
+
"onlyDependOnLibsWithTags": ["scope:core", "scope:tools"]
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"sourceTag": "scope:docs",
|
|
74
|
+
"onlyDependOnLibsWithTags": [
|
|
75
|
+
"scope:core",
|
|
76
|
+
"scope:tools",
|
|
77
|
+
"scope:docs"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
/**
|
|
81
|
+
* Domain Level dependency rules
|
|
82
|
+
*/
|
|
83
|
+
{
|
|
84
|
+
"sourceTag": "level:utilities",
|
|
85
|
+
"onlyDependOnLibsWithTags": ["level:utilities"]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"sourceTag": "level:domain",
|
|
89
|
+
"onlyDependOnLibsWithTags": ["level:utilities", "level:domain"]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"sourceTag": "level:application",
|
|
93
|
+
"onlyDependOnLibsWithTags": [
|
|
94
|
+
"level:utilities",
|
|
95
|
+
"level:domain",
|
|
96
|
+
"level:application"
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"sourceTag": "level:infrastructure",
|
|
101
|
+
"onlyDependOnLibsWithTags": [
|
|
102
|
+
"level:utilities",
|
|
103
|
+
"level:domain",
|
|
104
|
+
"level:application",
|
|
105
|
+
"level:infrastructure"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"sourceTag": "level:application",
|
|
110
|
+
"onlyDependOnLibsWithTags": [
|
|
111
|
+
"level:utilities",
|
|
112
|
+
"level:domain",
|
|
113
|
+
"level:application",
|
|
114
|
+
"level:infrastructure"
|
|
115
|
+
]
|
|
116
|
+
}
|
|
117
|
+
]
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
}
|