dotnet-format
dotnet-format requires a .sln
or .vbproj
file to run correctly.
dotnet-format documentation
- Version in MegaLinter: 8.0.111
- Visit Official Web Site
- See How to configure dotnet-format rules
Configuration in MegaLinter
- Enable dotnet-format by adding
VBDOTNET_DOTNET_FORMAT
in ENABLE_LINTERS variable - Disable dotnet-format by adding
VBDOTNET_DOTNET_FORMAT
in DISABLE_LINTERS variable
- Enable autofixes by adding
VBDOTNET_DOTNET_FORMAT
in APPLY_FIXES variable
Variable | Description | Default value |
---|---|---|
VBDOTNET_DOTNET_FORMAT_ARGUMENTS | User custom arguments to add in linter CLI call Ex: -s --foo "bar" |
|
VBDOTNET_DOTNET_FORMAT_COMMAND_REMOVE_ARGUMENTS | User custom arguments to remove from command line before calling the linter Ex: -s --foo "bar" |
|
VBDOTNET_DOTNET_FORMAT_CLI_LINT_MODE | Override default CLI lint mode ⚠️ As default value is project, overriding might not work - file : Calls the linter for each file- list_of_files : Call the linter with the list of files as argument- project : Call the linter from the root of the project |
project |
VBDOTNET_DOTNET_FORMAT_FILE_EXTENSIONS | Allowed file extensions. "*" matches any extension, "" matches empty extension. Empty list excludes all filesEx: [".py", ""] |
[".vb"] |
VBDOTNET_DOTNET_FORMAT_FILE_NAMES_REGEX | File name regex filters. Regular expression list for filtering files by their base names using regex full match. Empty list includes all files Ex: ["Dockerfile(-.+)?", "Jenkinsfile"] |
Include every file |
VBDOTNET_DOTNET_FORMAT_PRE_COMMANDS | List of bash commands to run before the linter | None |
VBDOTNET_DOTNET_FORMAT_POST_COMMANDS | List of bash commands to run after the linter | None |
VBDOTNET_DOTNET_FORMAT_UNSECURED_ENV_VARIABLES | List of env variables explicitly not filtered before calling VBDOTNET_DOTNET_FORMAT and its pre/post commands | None |
VBDOTNET_DOTNET_FORMAT_DISABLE_ERRORS | Run linter but consider errors as warnings | true |
VBDOTNET_DOTNET_FORMAT_DISABLE_ERRORS_IF_LESS_THAN | Maximum number of errors allowed | 0 |
VBDOTNET_DOTNET_FORMAT_CLI_EXECUTABLE | Override CLI executable | ['dotnet'] |
MegaLinter Flavors
This linter is available in the following flavors
Flavor | Description | Embedded linters | Info | |
---|---|---|---|---|
all | Default MegaLinter Flavor | 124 | ||
dotnet | Optimized for C, C++, C# or VB based projects | 62 | ||
dotnetweb | Optimized for C, C++, C# or VB based projects with JS/TS | 71 | ||
formatters | Contains only formatters | 17 |
Behind the scenes
How are identified applicable files
- File extensions:
.vb
How the linting is performed
dotnet-format is called once on the whole project directory (project
CLI lint mode)
- filtering can not be done using MegaLinter configuration variables,it must be done using dotnet-format configuration or ignore file (if existing)
VALIDATE_ALL_CODEBASE: false
doesn't make dotnet-format analyze only updated files
Example calls
dotnet format --verify-no-changes
dotnet format Solution.sln --verify-no-changes
dotnet format Folder/Solution.sln --verify-no-changes
dotnet format Project.vbproj --verify-no-changes
dotnet format
Help content
Description:
Formats code to match editorconfig settings.
Usage:
dotnet-format [<PROJECT | SOLUTION>] [command] [options]
Arguments:
<PROJECT | SOLUTION> The project or solution file to operate on. If a file is not specified, the command will search the current directory for one. [default: /]
Options:
-?, -h, --help Show help and usage information
--version Show version information
--diagnostics A space separated list of diagnostic ids to use as a filter when fixing code style or 3rd party issues. []
--exclude-diagnostics A space separated list of diagnostic ids to ignore when fixing code style or 3rd party issues. []
--severity <error|info|warn> The severity of diagnostics to fix. Allowed values are info, warn, and error.
--no-restore Doesn't execute an implicit restore before formatting.
--verify-no-changes Verify no formatting changes would be performed. Terminates with a non-zero exit code if any files would have been formatted.
--include A list of relative file or folder paths to include in formatting. All files are formatted if empty. []
--exclude A list of relative file or folder paths to exclude from formatting. []
--include-generated Format files generated by the SDK.
-v, --verbosity <d|detailed|diag|diagnostic|m|minimal|n|normal|q|quiet> Set the verbosity level. Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic]
--binarylog <binary-log-path> Log all project or solution load information to a binary log file.
--report <report-path> Accepts a file path which if provided will produce a json report in the given directory.
Commands:
whitespace <PROJECT | SOLUTION> Run whitespace formatting. [default: /]
style <PROJECT | SOLUTION> Run code style analyzers and apply fixes. [default: /]
analyzers <PROJECT | SOLUTION> Run 3rd party analyzers and apply fixes. [default: /]