@storm-software/workspace-tools 1.62.18 → 1.62.20
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/CHANGELOG.md +24 -0
- package/declarations.d.ts +129 -0
- package/executors.json +35 -0
- package/generators.json +53 -0
- package/index.js +4 -2410
- package/meta.json +1 -1
- package/package.json +16 -2
- package/src/executors/npm-publish/schema.d.ts +8 -0
- package/src/executors/npm-publish/schema.json +26 -0
- package/src/executors/tsup/executor.js +4 -2410
- package/src/executors/tsup/schema.d.ts +48 -0
- package/src/executors/tsup/schema.json +223 -0
- package/src/executors/tsup-browser/executor.js +4 -2410
- package/src/executors/tsup-browser/schema.d.ts +9 -0
- package/src/executors/tsup-browser/schema.json +11 -0
- package/src/executors/tsup-neutral/executor.js +4 -2410
- package/src/executors/tsup-neutral/schema.d.ts +5 -0
- package/src/executors/tsup-neutral/schema.json +11 -0
- package/src/executors/tsup-node/executor.js +4 -2410
- package/src/executors/tsup-node/schema.d.ts +7 -0
- package/src/executors/tsup-node/schema.json +20 -0
- package/src/executors/typia/schema.d.ts +6 -0
- package/src/executors/typia/schema.json +38 -0
- package/src/generators/browser-library/files/README.md +58 -0
- package/src/generators/browser-library/files/jest.config.ts +3 -0
- package/src/generators/browser-library/files/src/index.ts.template +10 -0
- package/src/generators/browser-library/files/tsconfig.spec.json +13 -0
- package/src/generators/browser-library/schema.d.ts +22 -0
- package/src/generators/browser-library/schema.json +82 -0
- package/src/generators/config-schema/schema.d.ts +3 -0
- package/src/generators/config-schema/schema.json +20 -0
- package/src/generators/init/schema.d.ts +3 -0
- package/src/generators/init/schema.json +16 -0
- package/src/generators/neutral-library/files/README.md +58 -0
- package/src/generators/neutral-library/files/jest.config.ts +3 -0
- package/src/generators/neutral-library/files/src/index.ts.template +10 -0
- package/src/generators/neutral-library/files/tsconfig.spec.json +13 -0
- package/src/generators/neutral-library/schema.d.ts +6 -0
- package/src/generators/neutral-library/schema.json +82 -0
- package/src/generators/node-library/files/README.md +58 -0
- package/src/generators/node-library/files/jest.config.ts +3 -0
- package/src/generators/node-library/files/src/index.ts.template +10 -0
- package/src/generators/node-library/files/tsconfig.spec.json +13 -0
- package/src/generators/node-library/schema.d.ts +22 -0
- package/src/generators/node-library/schema.json +82 -0
- package/src/generators/preset/files/.all-contributorsrc.template +48 -0
- package/src/generators/preset/files/.editorconfig +454 -0
- package/src/generators/preset/files/.env.template +43 -0
- package/src/generators/preset/files/.gitattributes +52 -0
- package/src/generators/preset/files/.github/.nvmrc +1 -0
- package/src/generators/preset/files/.github/.whitesource +14 -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/FUNDING.yml +3 -0
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/bug-report.yml.template +102 -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 +60 -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/setup-workspace/action.yaml +41 -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 +51 -0
- package/src/generators/preset/files/.github/stale.yml +50 -0
- package/src/generators/preset/files/.github/workflows/build-release.yml.template +94 -0
- package/src/generators/preset/files/.github/workflows/code-review.yml +18 -0
- package/src/generators/preset/files/.github/workflows/codeql.yml +84 -0
- package/src/generators/preset/files/.github/workflows/git-guardian.yml +23 -0
- package/src/generators/preset/files/.github/workflows/greetings.yml +24 -0
- package/src/generators/preset/files/.github/workflows/labels.yml +31 -0
- package/src/generators/preset/files/.github/workflows/lock.yml +26 -0
- package/src/generators/preset/files/.log4brains.yml.template +5 -0
- package/src/generators/preset/files/.markdownlint.json +28 -0
- package/src/generators/preset/files/.verdaccio/config.yml.template +40 -0
- package/src/generators/preset/files/.vscode/README.md +32 -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 +37 -0
- package/src/generators/preset/files/.vscode/settings.json +316 -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 +273 -0
- package/src/generators/preset/files/assets/diagrams/.gitkeep +0 -0
- package/src/generators/preset/files/assets/icons/dark/.gitkeep +0 -0
- package/src/generators/preset/files/assets/icons/light/.gitkeep +0 -0
- package/src/generators/preset/files/assets/logos/.gitkeep +0 -0
- package/src/generators/preset/files/biome.json +4 -0
- package/src/generators/preset/files/docs/api-reference/.gitkeep +0 -0
- package/src/generators/preset/files/docs/readme-templates/README.footer.md.template +94 -0
- package/src/generators/preset/files/docs/readme-templates/README.header.md.template +17 -0
- package/src/generators/preset/files/lefthook.json +6 -0
- package/src/generators/preset/files/nx.json +3 -0
- package/src/generators/preset/files/pnpm-workspace.yaml +6 -0
- package/src/generators/preset/files/socket.yaml +20 -0
- package/src/generators/preset/files/tsconfig.base.json.template +11 -0
- package/src/generators/preset/schema.d.ts +14 -0
- package/src/generators/preset/schema.json +103 -0
- package/src/generators/release-version/schema.d.ts +3 -0
- package/src/generators/release-version/schema.json +66 -0
- package/src/utils/index.js +4 -2410
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"$id": "node-library",
|
|
4
|
+
"title": "Add Node Library",
|
|
5
|
+
"description": "Create a new NodeJs TypeScript library package in the Storm workspace",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"name": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "A name for the library.",
|
|
11
|
+
"$default": {
|
|
12
|
+
"$source": "argv",
|
|
13
|
+
"index": 0
|
|
14
|
+
},
|
|
15
|
+
"x-prompt": "What name would you like to use for the library?",
|
|
16
|
+
"pattern": "(?:^@[a-zA-Z0-9-*~][a-zA-Z0-9-*._~]*\\/[a-zA-Z0-9-~][a-zA-Z0-9-._~]*|^[a-zA-Z][^:]*)$"
|
|
17
|
+
},
|
|
18
|
+
"description": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "The library used by Storm Software for building TypeScript applications.",
|
|
21
|
+
"$default": {
|
|
22
|
+
"$source": "argv",
|
|
23
|
+
"index": 2
|
|
24
|
+
},
|
|
25
|
+
"x-prompt": "Provide description to use as a summary of the library?"
|
|
26
|
+
},
|
|
27
|
+
"directory": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"description": "A directory where the lib is placed.",
|
|
30
|
+
"x-priority": "important"
|
|
31
|
+
},
|
|
32
|
+
"projectNameAndRootFormat": {
|
|
33
|
+
"description": "Whether to generate the project name and root directory as provided (`as-provided`) or generate them composing their values and taking the configured layout into account (`derived`).",
|
|
34
|
+
"type": "string",
|
|
35
|
+
"enum": ["as-provided", "derived"]
|
|
36
|
+
},
|
|
37
|
+
"tags": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"description": "Add tags to the library (used for linting)."
|
|
40
|
+
},
|
|
41
|
+
"strict": {
|
|
42
|
+
"type": "boolean",
|
|
43
|
+
"description": "Whether to enable tsconfig strict mode or not.",
|
|
44
|
+
"default": true
|
|
45
|
+
},
|
|
46
|
+
"publishable": {
|
|
47
|
+
"type": "boolean",
|
|
48
|
+
"default": false,
|
|
49
|
+
"description": "Generate a publishable library.",
|
|
50
|
+
"x-priority": "important"
|
|
51
|
+
},
|
|
52
|
+
"importPath": {
|
|
53
|
+
"type": "string",
|
|
54
|
+
"description": "The library name used to import it, like @storm-software/my-awesome-lib. Required for publishable library.",
|
|
55
|
+
"x-priority": "important"
|
|
56
|
+
},
|
|
57
|
+
"buildable": {
|
|
58
|
+
"type": "boolean",
|
|
59
|
+
"default": true,
|
|
60
|
+
"description": "Generate a buildable library.",
|
|
61
|
+
"x-deprecated": "Use the `bundler` option for greater control (swc, tsc, rollup, vite, esbuild, none)."
|
|
62
|
+
},
|
|
63
|
+
"setParserOptionsProject": {
|
|
64
|
+
"type": "boolean",
|
|
65
|
+
"description": "Whether or not to configure the ESLint `parserOptions.project` option. We do not do this by default for lint performance reasons.",
|
|
66
|
+
"default": false
|
|
67
|
+
},
|
|
68
|
+
"rootProject": {
|
|
69
|
+
"type": "boolean",
|
|
70
|
+
"default": false,
|
|
71
|
+
"description": "Is the current project the root project in the workspace."
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"required": [
|
|
75
|
+
"name",
|
|
76
|
+
"directory",
|
|
77
|
+
"projectNameAndRootFormat",
|
|
78
|
+
"publishable",
|
|
79
|
+
"importPath",
|
|
80
|
+
"buildable"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"projectName": "<%= name %>",
|
|
3
|
+
"projectOwner": "storm-software",
|
|
4
|
+
"repoType": "github",
|
|
5
|
+
"repoHost": "https://github.com",
|
|
6
|
+
"files": [
|
|
7
|
+
"README.md"
|
|
8
|
+
],
|
|
9
|
+
"imageSize": 100,
|
|
10
|
+
"contributorsPerLine": 5,
|
|
11
|
+
"linkToUsage": true,
|
|
12
|
+
"commitType": "docs",
|
|
13
|
+
"commit": true,
|
|
14
|
+
"commitConvention": "angular",
|
|
15
|
+
"contributors": [
|
|
16
|
+
{
|
|
17
|
+
"login": "sullivanpj",
|
|
18
|
+
"name": "Patrick Sullivan",
|
|
19
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/99053093?v=4",
|
|
20
|
+
"profile": "http://www.sullypat.com/",
|
|
21
|
+
"contributions": [
|
|
22
|
+
"design",
|
|
23
|
+
"code",
|
|
24
|
+
"tool",
|
|
25
|
+
"doc",
|
|
26
|
+
"test"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"login": "tbenning",
|
|
31
|
+
"name": "Tyler Benning",
|
|
32
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/7265547?v=4",
|
|
33
|
+
"profile": "https://tylerbenning.com/",
|
|
34
|
+
"contributions": [
|
|
35
|
+
"design"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"login": "stormie-bot",
|
|
40
|
+
"name": "Stormie",
|
|
41
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/149802440?v=4",
|
|
42
|
+
"profile": "http://stormsoftware.org",
|
|
43
|
+
"contributions": [
|
|
44
|
+
"maintenance"
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
@@ -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,43 @@
|
|
|
1
|
+
TYPESENSE_API_KEY="xyz"
|
|
2
|
+
NODE_OPTIONS="--trace-warnings --heapsnapshot-near-heap-limit=3 --heapsnapshot-signal=SIGTERM"
|
|
3
|
+
|
|
4
|
+
AKKA_STREAMS_KAFKA_TEST_FILE_LOGGING=true
|
|
5
|
+
RUST_BACKTRACE="full"
|
|
6
|
+
# PUPPETEER_SKIP_DOWNLOAD=true
|
|
7
|
+
|
|
8
|
+
HS_SERVICE_NAME="@<%= namespace %>/<%= name %>"
|
|
9
|
+
|
|
10
|
+
SENTRY_ORGANIZATION="<%= organization %>"
|
|
11
|
+
SENTRY_PROPERTIES="apps/web/app"
|
|
12
|
+
|
|
13
|
+
DEFAULT_LOCALE="en_US"
|
|
14
|
+
DEFAULT_TIMEZONE="America/New_York"
|
|
15
|
+
|
|
16
|
+
STORM_OWNER="sullivanpj"
|
|
17
|
+
STORM_WORKER="stormie-bot"
|
|
18
|
+
STORM_ORGANIZATION="<%= organization %>"
|
|
19
|
+
STORM_NAMESPACE="<%= name %>"
|
|
20
|
+
STORM_NAMESPACESPACE="<%= namespace %>"
|
|
21
|
+
STORM_REPOSITORY="<%= repositoryUrl %>"
|
|
22
|
+
STORM_BRANCH="main"
|
|
23
|
+
STORM_PRE_MAJOR=false
|
|
24
|
+
|
|
25
|
+
INFISICAL_ENVIRONMENT="prod"
|
|
26
|
+
|
|
27
|
+
READINESS_CHECK_PATH="/readiness"
|
|
28
|
+
HEALTH_CHECK_PATH="/healthcheck"
|
|
29
|
+
|
|
30
|
+
LOG_LEVEL="info"
|
|
31
|
+
# LOG_PATH="C:\\Development\\stormstack\\logs"
|
|
32
|
+
|
|
33
|
+
PNPM_VERSION="<%= pnpmVersion %>"
|
|
34
|
+
|
|
35
|
+
DEV_EDITOR_ID="vscode"
|
|
36
|
+
|
|
37
|
+
THEME_PRIMARY_COLOR="#1fb2a6"
|
|
38
|
+
THEME_BACKGROUND_COLOR="#1d232a"
|
|
39
|
+
THEME_SUCCESS_COLOR="#087f5b"
|
|
40
|
+
THEME_INFO_COLOR="#0ea5e9"
|
|
41
|
+
THEME_WARNING_COLOR="#fcc419"
|
|
42
|
+
THEME_ERROR_COLOR="#7d1a1a"
|
|
43
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
###############################
|
|
2
|
+
# Git Line Endings #
|
|
3
|
+
###############################
|
|
4
|
+
|
|
5
|
+
# Set default behavior to automatically normalize line endings.
|
|
6
|
+
* text=auto eol=lf
|
|
7
|
+
|
|
8
|
+
# Force batch scripts to always use CRLF line endings so that if a repo is accessed
|
|
9
|
+
# in Windows via a file share from Linux, the scripts will work.
|
|
10
|
+
*.{cmd,[cC][mM][dD]} text eol=crlf
|
|
11
|
+
*.{bat,[bB][aA][tT]} text eol=crlf
|
|
12
|
+
|
|
13
|
+
# Force bash scripts to always use LF line endings so that if a repo is accessed
|
|
14
|
+
# in Unix via a file share from Windows, the scripts will work.
|
|
15
|
+
*.sh text eol=lf
|
|
16
|
+
|
|
17
|
+
###############################
|
|
18
|
+
# Git Large File System (LFS) #
|
|
19
|
+
###############################
|
|
20
|
+
|
|
21
|
+
# Archives
|
|
22
|
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
|
23
|
+
*.br filter=lfs diff=lfs merge=lfs -text
|
|
24
|
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
|
25
|
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
|
26
|
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
|
27
|
+
|
|
28
|
+
# Documents
|
|
29
|
+
*.pdf filter=lfs diff=lfs merge=lfs -text
|
|
30
|
+
|
|
31
|
+
# Images
|
|
32
|
+
*.gif filter=lfs diff=lfs merge=lfs -text
|
|
33
|
+
*.ico filter=lfs diff=lfs merge=lfs -text
|
|
34
|
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
|
35
|
+
*.png filter=lfs diff=lfs merge=lfs -text
|
|
36
|
+
*.psd filter=lfs diff=lfs merge=lfs -text
|
|
37
|
+
*.webp filter=lfs diff=lfs merge=lfs -text
|
|
38
|
+
|
|
39
|
+
# Fonts
|
|
40
|
+
*.woff2 filter=lfs diff=lfs merge=lfs -text
|
|
41
|
+
|
|
42
|
+
# Other
|
|
43
|
+
*.exe filter=lfs diff=lfs merge=lfs -text
|
|
44
|
+
|
|
45
|
+
###############################
|
|
46
|
+
# GitHub linguist #
|
|
47
|
+
###############################
|
|
48
|
+
|
|
49
|
+
apps/**/.next/** -text linguist-vendored
|
|
50
|
+
|
|
51
|
+
# Make dist folder indexable for github search
|
|
52
|
+
dist/** linguist-generated=false
|