ReSharper 2020.1 Help

Using Clang-Format

Starting from version 2017.2, in C++ files (and partly in JavaScript and TypeScript files) ReSharper supports formatting styles defined in Clang-Format. By default, Clang-Format configuration files get automatically used as a source of formatting style settings.

What is Clang-Format and how does ReSharper support it?

Clang-Format is a widely-used C++ code formatter. As it provides an option to define code style options in YAML-formatted files — named .clang-format or _clang-format— these files often become a part of your project where you keep all code style rules. To see the full list of Clang-Format style options and examples of configuration files, check out the Clang-Format documentation.

If your project happens to have its code styles configured in Clang-Format files, ReSharper's code formatting engine will automatically use most of these styles for formatting C++ files, and some of them in JavaScript and TypeScript files.

Clang-Format in your solution

By default, Clang-Format properties are enabled; they will override preferences defined in ReSharper and Visual Studio options as well as EditorConfig styles. If you want ReSharper to ignore Clang-Format styles , clear the corresponding checkbox on the Code Editing | General Formatter Style page of ReSharper options .

When Clang-Format support is enabled and there are .clang-format or _clang-format files that affect the current file, ReSharper will help you understand which Clang-Format styles are applied and where these settings come from:

  • On ReSharper formatting options pages for C++, JavaScript, and TypeScript , you will see a yellow warning if at least one preference on the page is overridden by Clang-Format styles for the current file, each overridden preference will also be highlighted with yellow. For example:

    Code formatting options overridden by Clang-Format styles

  • In the File Formatting Info window, you can see and study all .clang-format and _clang-format files that affect the current file:

    ReSharper. File Formatting Info window

Export code style settings to Clang-Format

If you are going to share code style settings via Clang-Format, you may want to export the styles already configured in ReSharper to the .clang-format file.

  1. Select ReSharper | Options from the main menu or press Alt+R O, then choose Code Editing | General Formatter Style on the left.

  2. In the Code style configuration files section, click Write current style to .clang-format. This will open the Export to .clang-format dialog.

  3. By default, ReSharper writes the settings to a new .clang-format file in the root directory of the current solution. If one or more .clang-format files exist, ReSharper will use the closest file in the directory hierarchy to save the settings. If necessary, you can change the destination file using the path selector at the top of the dialog.

  4. For more detailed configuration, you can expand Show additional options and choose the following options:

    • BasedOnStyle— sets the corresponding option to define which style is used for all options by default.

    • Hide options that coincide with the chosen base style
      Options that have the same value as defined in the base style that is selected in BasedOnStyle will not be exported.

    • Export CPP settings— whether to export Clang-Format options that affect C++ code.

    • Export CPP settings— whether to export Clang-Format options that affect JavaScript code.

  5. If there is an existing .clang-format file in the specified location, there could be conflicts between values of properties that exist there and the ones that ReSharper is about to save. Such properties will be shown in red and if you proceed with saving, the conflicts will be resolved in favor of the newly generated ones.

  6. Click Export. ReSharper will create or update the .clang-format file in the specified location.

You can also save formatting styles to Clang-Format after contextual configuration of formatting rules.

Supported Clang-Format Options

OptionSupported in languages
BasedOnStyleC++
AlignConsecutiveAssignmentsC++
AlignConsecutiveDeclarationsC++
AlignAfterOpenBracketC++
AlignOperandsC++
AlignTrailingCommentsC++
AllowShortCaseLabelsOnASingleLineC++
AlwaysBreakAfterDefinitionReturnTypeC++
AlwaysBreakAfterReturnTypeC++
AlwaysBreakTemplateDeclarationsC++
BinPackArgumentsC++
BinPackParametersC++
BreakBeforeBraces (except for Custom and class definition in Linux) C++
BreakBeforeTernaryOperatorsC++
BreakConstructorInitializersBeforeCommaC++
ColumnLimitC++, JavaScript, TypeScript
ConstructorInitializerAllOnOneLineOrOnePerLineC++
IncludeBlocksC++
IncludeCategoriesC++
IncludeIsMainRegexC++
IndentCaseLabelsC++
IndentWidthC++, JavaScript, TypeScript
IndentWrappedFunctionNamesC++
MaxEmptyLinesToKeepC++
NamespaceIndentationC++
PointerAlignmentC++
SortIncludesC++
SpaceAfterCStyleCastC++
SpaceAfterTemplateKeywordC++
SpaceBeforeParensC++
SpacesInAnglesC++
SpacesInParenthesesC++
SpacesInSquareBracketsC++
TabWidthC++, JavaScript, TypeScript
UseTabC++, JavaScript, TypeScript

This feature is supported in the following languages and technologies:

Language: C#Language: VB.NETLanguage: C++Language: HTMLLanguage: ASP.NETLanguage: RazorLanguage: JavaScriptLanguage: TypeScriptLanguage: CSSLanguage: XMLLanguage: XAMLLanguage: ResxLanguage: Build ScriptsLanguage: ProtobufLanguage: JSON
Last modified: 05 August 2020