ReSharper 2017.1 Help

JavaScript - Other

Align Multiline Constructs

Method parameters

Property names:

[resharper_]js_align_multiline_parameter, [resharper_]align_multiline_parameter

Possible values:

true | false

Examples:

true
function·foo(firstParameter, ·············secondParameter{ }
false
function·foo(firstParameter, ··secondParameter{ }

Multiple declarations

Property names:

[resharper_]js_align_multiple_declaration, [resharper_]align_multiple_declaration

Possible values:

true | false

Examples:

true
var·variable·0, ····variable_2·10;
false
var·variable·0, ··variable_2·10;

Align ?: operator

Property names:

[resharper_]js_align_ternary, [resharper_]align_ternary

Possible values:

  • none: No align
  • align_not_nested: Align except when nested
  • align_all: Align

Examples:

none
var·variable·56·(condition1 ··result1 ··condition2 ··result2 ··result3);
align_not_nested
var·variable·56·(condition1 ·······················result1 ·······················condition2 ·······················result2 ·······················result3);
align_all
var·variable·56·(condition1 ·······················result1 ·······················condition2 ·························result2 ·························result3);

Other

Don't indent comments started at first column

Property names:

[resharper_]js_stick_comment, [resharper_]stick_comment

Possible values:

true | false

Examples:

Before formatting After formatting, true
function·Foo(){ //·Some·comment ··var·tt·123;··return·tt; }
function·Foo()·{ //·Some·comment ··var·tt·123; ··return·tt; }
Before formatting After formatting, false
function·Foo(){ //·Some·comment ··var·tt·123;··return·tt; }
function·Foo()·{ ··//·Some·comment ··var·tt·123; ··return·tt; }

Line feed at end of file

Property names:

js_insert_final_newline, insert_final_newline

Possible values:

true | false

Last modified: 12 October 2017