@storm-software/workspace-tools 1.270.2 → 1.271.1
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 +40 -0
- package/README.md +1 -1
- package/dist/chunk-4QYM3VS4.mjs +282 -0
- package/dist/{chunk-ZP76EMBE.js → chunk-FYXWAGK3.js} +97 -27
- package/dist/chunk-MJMN2T4N.mjs +166 -0
- package/dist/chunk-RZVF4LHT.js +282 -0
- package/dist/executors.js +6 -6
- package/dist/executors.mjs +6 -6
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -6
- package/dist/index.mjs +8 -8
- package/dist/src/executors/npm-publish/executor.js +3 -3
- package/dist/src/executors/npm-publish/executor.mjs +2 -2
- package/dist/src/generators/preset/files/LICENSE +201 -0
- package/dist/src/utils/index.d.mts +1 -1
- package/dist/src/utils/index.d.ts +1 -1
- package/dist/src/utils/index.js +2 -2
- package/dist/src/utils/index.mjs +3 -3
- package/dist/src/utils/pnpm-deps-update.d.mts +3 -3
- package/dist/src/utils/pnpm-deps-update.d.ts +3 -3
- package/dist/src/utils/pnpm-deps-update.js +2 -2
- package/dist/src/utils/pnpm-deps-update.mjs +3 -3
- package/docs/api/base/base-executor.schema.md +16 -0
- package/docs/api/base/base-generator.schema.md +15 -0
- package/docs/api/base/cargo-base-executor.schema.md +90 -0
- package/docs/api/base/typescript-build-executor.schema.md +126 -0
- package/docs/api/base/typescript-library-generator.schema.md +129 -0
- package/docs/api/executors/cargo-build/schema.md +89 -0
- package/docs/api/executors/cargo-check/schema.md +90 -0
- package/docs/api/executors/cargo-clippy/schema.md +99 -0
- package/docs/api/executors/cargo-doc/schema.md +130 -0
- package/docs/api/executors/cargo-format/schema.md +90 -0
- package/docs/api/executors/cargo-publish/schema.md +117 -0
- package/docs/api/executors/clean-package/schema.md +65 -0
- package/docs/api/executors/esbuild/schema.md +126 -0
- package/docs/api/executors/npm-publish/schema.md +64 -0
- package/docs/api/executors/size-limit/schema.md +25 -0
- package/docs/api/executors/typia/schema.md +46 -0
- package/docs/api/executors/unbuild/schema.md +222 -0
- package/docs/api/generators/browser-library/files/README.md +58 -0
- package/docs/api/generators/browser-library/schema.md +129 -0
- package/docs/api/generators/config-schema/schema.md +25 -0
- package/docs/api/generators/init/schema.md +15 -0
- package/docs/api/generators/neutral-library/files/README.md +58 -0
- package/docs/api/generators/neutral-library/schema.md +129 -0
- package/docs/api/generators/node-library/files/README.md +63 -0
- package/docs/api/generators/node-library/schema.md +129 -0
- package/docs/api/generators/preset/schema.md +110 -0
- package/docs/api/generators/release-version/schema.md +160 -0
- package/package.json +13 -35
- package/dist/chunk-CMH2A42G.js +0 -467
- package/dist/chunk-HMJTTE4A.mjs +0 -96
- package/dist/chunk-I54IKCIV.mjs +0 -467
- package/docs/executors/rollup.md +0 -88
- package/executors.ts +0 -23
- package/generators.ts +0 -14
- package/index.ts +0 -5
- package/project.json +0 -58
- package/src/base/base-executor.ts +0 -200
- package/src/base/base-executor.untyped.ts +0 -18
- package/src/base/base-generator.ts +0 -130
- package/src/base/base-generator.untyped.ts +0 -16
- package/src/base/cargo-base-executor.untyped.ts +0 -73
- package/src/base/index.ts +0 -8
- package/src/base/typescript-build-executor.untyped.ts +0 -153
- package/src/base/typescript-library-generator.ts +0 -415
- package/src/base/typescript-library-generator.untyped.ts +0 -106
- package/src/executors/cargo-build/executor.spec.ts +0 -18
- package/src/executors/cargo-build/executor.ts +0 -28
- package/src/executors/cargo-build/untyped.ts +0 -18
- package/src/executors/cargo-check/executor.spec.ts +0 -18
- package/src/executors/cargo-check/executor.ts +0 -27
- package/src/executors/cargo-check/untyped.ts +0 -11
- package/src/executors/cargo-clippy/executor.spec.ts +0 -18
- package/src/executors/cargo-clippy/executor.ts +0 -28
- package/src/executors/cargo-clippy/untyped.ts +0 -18
- package/src/executors/cargo-doc/executor.spec.ts +0 -18
- package/src/executors/cargo-doc/executor.ts +0 -39
- package/src/executors/cargo-doc/untyped.ts +0 -44
- package/src/executors/cargo-format/executor.spec.ts +0 -18
- package/src/executors/cargo-format/executor.ts +0 -28
- package/src/executors/cargo-format/untyped.ts +0 -11
- package/src/executors/cargo-publish/executor.spec.ts +0 -11
- package/src/executors/cargo-publish/executor.ts +0 -139
- package/src/executors/cargo-publish/untyped.ts +0 -33
- package/src/executors/clean-package/constants.ts +0 -99
- package/src/executors/clean-package/executor.spec.ts +0 -18
- package/src/executors/clean-package/executor.ts +0 -214
- package/src/executors/clean-package/types.ts +0 -6
- package/src/executors/clean-package/untyped.ts +0 -60
- package/src/executors/clean-package/utils.ts +0 -85
- package/src/executors/esbuild/executor.spec.ts +0 -11
- package/src/executors/esbuild/executor.ts +0 -67
- package/src/executors/esbuild/untyped.ts +0 -20
- package/src/executors/npm-publish/executor.spec.ts +0 -11
- package/src/executors/npm-publish/executor.ts +0 -680
- package/src/executors/npm-publish/untyped.ts +0 -56
- package/src/executors/size-limit/executor.spec.ts +0 -18
- package/src/executors/size-limit/executor.ts +0 -88
- package/src/executors/size-limit/untyped.ts +0 -22
- package/src/executors/typia/executor.ts +0 -54
- package/src/executors/typia/untyped.ts +0 -48
- package/src/executors/unbuild/executor.spec.ts +0 -11
- package/src/executors/unbuild/executor.ts +0 -136
- package/src/executors/unbuild/untyped.ts +0 -152
- package/src/generators/browser-library/generator.spec.ts +0 -20
- package/src/generators/browser-library/generator.ts +0 -109
- package/src/generators/browser-library/untyped.ts +0 -29
- package/src/generators/config-schema/generator.spec.ts +0 -20
- package/src/generators/config-schema/generator.ts +0 -90
- package/src/generators/config-schema/untyped.ts +0 -19
- package/src/generators/init/init.ts +0 -32
- package/src/generators/init/untyped.ts +0 -16
- package/src/generators/neutral-library/generator.spec.ts +0 -20
- package/src/generators/neutral-library/generator.ts +0 -81
- package/src/generators/neutral-library/untyped.ts +0 -29
- package/src/generators/node-library/generator.spec.ts +0 -20
- package/src/generators/node-library/generator.ts +0 -84
- package/src/generators/node-library/untyped.ts +0 -29
- package/src/generators/preset/files/.all-contributorsrc.template +0 -48
- package/src/generators/preset/files/.editorconfig +0 -454
- package/src/generators/preset/files/.env.template +0 -38
- package/src/generators/preset/files/.gitattributes +0 -52
- package/src/generators/preset/files/.github/.nvmrc +0 -1
- package/src/generators/preset/files/.github/CODEOWNERS +0 -3
- package/src/generators/preset/files/.github/CODE_OF_CONDUCT.md +0 -125
- package/src/generators/preset/files/.github/CONTRIBUTING.md.template +0 -15
- package/src/generators/preset/files/.github/FUNDING.yml +0 -3
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/bug-report.yml.template +0 -102
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/documentation.yml.template +0 -56
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/feature-request.yml.template +0 -60
- package/src/generators/preset/files/.github/PULL_REQUEST_TEMPLATE.md.template +0 -39
- package/src/generators/preset/files/.github/SECURITY.md +0 -9
- package/src/generators/preset/files/.github/codecov.yml +0 -29
- package/src/generators/preset/files/.github/dependabot.yml +0 -64
- package/src/generators/preset/files/.github/labels.yml +0 -84
- package/src/generators/preset/files/.github/renovate.json +0 -4
- package/src/generators/preset/files/.github/renovate.json.template +0 -63
- package/src/generators/preset/files/.github/stale.yml +0 -55
- package/src/generators/preset/files/.github/workflows/build-release.yml.template +0 -25
- package/src/generators/preset/files/.github/workflows/code-review.yml +0 -18
- package/src/generators/preset/files/.github/workflows/codeql.yml +0 -84
- package/src/generators/preset/files/.github/workflows/dependabot-update.yml +0 -32
- package/src/generators/preset/files/.github/workflows/git-guardian.yml +0 -23
- package/src/generators/preset/files/.github/workflows/greetings.yml +0 -31
- package/src/generators/preset/files/.github/workflows/labels.yml +0 -31
- package/src/generators/preset/files/.github/workflows/lock.yml +0 -26
- package/src/generators/preset/files/.log4brains.yml.template +0 -5
- package/src/generators/preset/files/.markdownlint.json +0 -155
- package/src/generators/preset/files/.verdaccio/config.yml.template +0 -40
- package/src/generators/preset/files/.vscode/README.md +0 -32
- package/src/generators/preset/files/.vscode/cspell.json +0 -3
- package/src/generators/preset/files/.vscode/extensions.json +0 -14
- package/src/generators/preset/files/.vscode/launch.json +0 -37
- package/src/generators/preset/files/.vscode/settings.json +0 -401
- package/src/generators/preset/files/.vscode/tasks.json +0 -4
- package/src/generators/preset/files/.whitesource +0 -14
- 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/docs/api-reference/.gitkeep +0 -0
- package/src/generators/preset/generator.spec.ts +0 -20
- package/src/generators/preset/generator.ts +0 -315
- package/src/generators/preset/untyped.ts +0 -88
- package/src/generators/release-version/generator.spec.ts +0 -20
- package/src/generators/release-version/generator.ts +0 -920
- package/src/generators/release-version/untyped.ts +0 -156
- package/src/plugins/rust/cargo-toml.ts +0 -434
- package/src/plugins/rust/index.ts +0 -1
- package/src/plugins/typescript/index.ts +0 -1
- package/src/plugins/typescript/project-config.ts +0 -564
- package/src/plugins/typescript/tsup.ts +0 -198
- package/src/types.ts +0 -130
- package/src/utils/apply-workspace-tokens.ts +0 -73
- package/src/utils/cargo.ts +0 -219
- package/src/utils/create-cli-options.ts +0 -23
- package/src/utils/get-project-configurations.ts +0 -27
- package/src/utils/index.ts +0 -12
- package/src/utils/lock-file.ts +0 -159
- package/src/utils/package-helpers.ts +0 -54
- package/src/utils/plugin-helpers.ts +0 -112
- package/src/utils/pnpm-deps-update.ts +0 -111
- package/src/utils/project-tags.ts +0 -162
- package/src/utils/toml.ts +0 -204
- package/src/utils/typia-transform.ts +0 -8
- package/src/utils/versions.ts +0 -19
- package/tsconfig.json +0 -30
- package/tsup.config.ts +0 -36
- /package/{src/generators/preset/files/LICENSE → LICENSE} +0 -0
- /package/{src → dist/src}/base/base-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/base-executor.schema.json +0 -0
- /package/{src → dist/src}/base/base-executor.schema.md +0 -0
- /package/{src → dist/src}/base/base-generator.schema.d.ts +0 -0
- /package/{src → dist/src}/base/base-generator.schema.json +0 -0
- /package/{src → dist/src}/base/base-generator.schema.md +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.json +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.md +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.json +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.md +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.d.ts +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.json +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.md +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.json +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.md +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.json +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.md +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.json +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.md +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.json +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.md +0 -0
- /package/{src → dist/src}/executors/typia/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/typia/schema.json +0 -0
- /package/{src → dist/src}/executors/typia/schema.md +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.json +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.md +0 -0
- /package/{src → dist/src}/generators/browser-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/browser-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/browser-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/browser-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.json +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.md +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.json +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.md +0 -0
- /package/{src → dist/src}/generators/init/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/init/schema.json +0 -0
- /package/{src → dist/src}/generators/init/schema.md +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.json +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.md +0 -0
- /package/{src → dist/src}/generators/node-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/node-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/node-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/node-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/node-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/node-library/schema.json +0 -0
- /package/{src → dist/src}/generators/node-library/schema.md +0 -0
- /package/{src → dist/src}/generators/preset/files/README.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/docs/readme-templates/README.footer.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/docs/readme-templates/README.header.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/eslint.config.js.template +0 -0
- /package/{src → dist/src}/generators/preset/files/knip.json +0 -0
- /package/{src → dist/src}/generators/preset/files/lefthook.json +0 -0
- /package/{src → dist/src}/generators/preset/files/nx.json +0 -0
- /package/{src → dist/src}/generators/preset/files/pnpm-workspace.yaml +0 -0
- /package/{src → dist/src}/generators/preset/files/socket.yaml +0 -0
- /package/{src → dist/src}/generators/preset/files/storm.json.template +0 -0
- /package/{src → dist/src}/generators/preset/files/tsconfig.base.json.template +0 -0
- /package/{src → dist/src}/generators/preset/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/preset/schema.json +0 -0
- /package/{src → dist/src}/generators/preset/schema.md +0 -0
- /package/{src → dist/src}/generators/release-version/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/release-version/schema.json +0 -0
- /package/{src → dist/src}/generators/release-version/schema.md +0 -0
- /package/{src → dist/src}/plugins/typescript/untyped-schema.ts +0 -0
|
@@ -1,454 +0,0 @@
|
|
|
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 = 2
|
|
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
|
|
@@ -1,38 +0,0 @@
|
|
|
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_BOT="stormie-bot"
|
|
18
|
-
STORM_ORG="<%= 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
|
-
|
|
38
|
-
|
|
@@ -1,52 +0,0 @@
|
|
|
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
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<%= nodeVersion %>
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
# Contributor Covenant Code of Conduct
|
|
2
|
-
|
|
3
|
-
## Our Pledge
|
|
4
|
-
|
|
5
|
-
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
-
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
-
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
-
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
-
nationality, personal appearance, race, religion, or sexual identity
|
|
10
|
-
and orientation.
|
|
11
|
-
|
|
12
|
-
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
-
diverse, inclusive, and healthy community.
|
|
14
|
-
|
|
15
|
-
## Our Standards
|
|
16
|
-
|
|
17
|
-
Examples of behavior that contributes to a positive environment for our
|
|
18
|
-
community include:
|
|
19
|
-
|
|
20
|
-
- Demonstrating empathy and kindness toward other people
|
|
21
|
-
- Being respectful of differing opinions, viewpoints, and experiences
|
|
22
|
-
- Giving and gracefully accepting constructive feedback
|
|
23
|
-
- Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
-
and learning from the experience
|
|
25
|
-
- Focusing on what is best not just for us as individuals, but for the
|
|
26
|
-
overall community
|
|
27
|
-
|
|
28
|
-
Examples of unacceptable behavior include:
|
|
29
|
-
|
|
30
|
-
- The use of sexualized language or imagery, and sexual attention or
|
|
31
|
-
advances of any kind
|
|
32
|
-
- Trolling, insulting or derogatory comments, and personal or political attacks
|
|
33
|
-
- Public or private harassment
|
|
34
|
-
- Publishing others' private information, such as a physical or email
|
|
35
|
-
address, without their explicit permission
|
|
36
|
-
- Other conduct which could reasonably be considered inappropriate in a
|
|
37
|
-
professional setting
|
|
38
|
-
|
|
39
|
-
## Enforcement Responsibilities
|
|
40
|
-
|
|
41
|
-
Community leaders are responsible for clarifying and enforcing our standards of
|
|
42
|
-
acceptable behavior and will take appropriate and fair corrective action in
|
|
43
|
-
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
44
|
-
or harmful.
|
|
45
|
-
|
|
46
|
-
Community leaders have the right and responsibility to remove, edit, or reject
|
|
47
|
-
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
48
|
-
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
49
|
-
decisions when appropriate.
|
|
50
|
-
|
|
51
|
-
## Scope
|
|
52
|
-
|
|
53
|
-
This Code of Conduct applies within all community spaces, and also applies when
|
|
54
|
-
an individual is officially representing the community in public spaces.
|
|
55
|
-
Examples of representing our community include using an official e-mail address,
|
|
56
|
-
posting via an official social media account, or acting as an appointed
|
|
57
|
-
representative at an online or offline event.
|
|
58
|
-
|
|
59
|
-
## Enforcement
|
|
60
|
-
|
|
61
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
-
reported to the community leaders responsible for enforcement at <admin@stormsoftware.com>.
|
|
63
|
-
All complaints will be reviewed and investigated promptly and fairly.
|
|
64
|
-
|
|
65
|
-
All community leaders are obligated to respect the privacy and security of the
|
|
66
|
-
reporter of any incident.
|
|
67
|
-
|
|
68
|
-
## Enforcement Guidelines
|
|
69
|
-
|
|
70
|
-
Community leaders will follow these Community Impact Guidelines in determining
|
|
71
|
-
the consequences for any action they deem in violation of this Code of Conduct:
|
|
72
|
-
|
|
73
|
-
### 1. Correction
|
|
74
|
-
|
|
75
|
-
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
76
|
-
unprofessional or unwelcome in the community.
|
|
77
|
-
|
|
78
|
-
**Consequence**: A private, written warning from community leaders, providing
|
|
79
|
-
clarity around the nature of the violation and an explanation of why the
|
|
80
|
-
behavior was inappropriate. A public apology may be requested.
|
|
81
|
-
|
|
82
|
-
### 2. Warning
|
|
83
|
-
|
|
84
|
-
**Community Impact**: A violation through a single incident or series
|
|
85
|
-
of actions.
|
|
86
|
-
|
|
87
|
-
**Consequence**: A warning with consequences for continued behavior. No
|
|
88
|
-
interaction with the people involved, including unsolicited interaction with
|
|
89
|
-
those enforcing the Code of Conduct, for a specified period of time. This
|
|
90
|
-
includes avoiding interactions in community spaces as well as external channels
|
|
91
|
-
like social media. Violating these terms may lead to a temporary or
|
|
92
|
-
permanent ban.
|
|
93
|
-
|
|
94
|
-
### 3. Temporary Ban
|
|
95
|
-
|
|
96
|
-
**Community Impact**: A serious violation of community standards, including
|
|
97
|
-
sustained inappropriate behavior.
|
|
98
|
-
|
|
99
|
-
**Consequence**: A temporary ban from any sort of interaction or public
|
|
100
|
-
communication with the community for a specified period of time. No public or
|
|
101
|
-
private interaction with the people involved, including unsolicited interaction
|
|
102
|
-
with those enforcing the Code of Conduct, is allowed during this period.
|
|
103
|
-
Violating these terms may lead to a permanent ban.
|
|
104
|
-
|
|
105
|
-
### 4. Permanent Ban
|
|
106
|
-
|
|
107
|
-
**Community Impact**: Demonstrating a pattern of violation of community
|
|
108
|
-
standards, including sustained inappropriate behavior, harassment of an
|
|
109
|
-
individual, or aggression toward or disparagement of classes of individuals.
|
|
110
|
-
|
|
111
|
-
**Consequence**: A permanent ban from any sort of public interaction within
|
|
112
|
-
the community.
|
|
113
|
-
|
|
114
|
-
## Attribution
|
|
115
|
-
|
|
116
|
-
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org),
|
|
117
|
-
version 2.0, available at
|
|
118
|
-
[https://www.contributor-covenant.org/version/2/0/code_of_conduct.html](https://www.contributor-covenant.org/version/2/0/code_of_conduct.html).
|
|
119
|
-
|
|
120
|
-
Community Impact Guidelines were inspired by
|
|
121
|
-
[Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/inclusion).
|
|
122
|
-
|
|
123
|
-
For answers to common questions about this code of conduct, see the FAQ at
|
|
124
|
-
[https://www.contributor-covenant.org/faq](https://www.contributor-covenant.org/faq). Translations are available
|
|
125
|
-
at [https://www.contributor-covenant.org/translations](https://www.contributor-covenant.org/translations).
|