Releases: RehanSaeed/EditorConfig
Releases · RehanSaeed/EditorConfig
1.5.0
- Add
dotnet_style_prefer_simplified_interpolation = true:warning(dotnet/roslyn#40070). - Add JavaScript modules
.jsmfile extension. - Add .webmanifest JSON file extension.
- Add
.vbxfile extension to match.csx. - Remove duplicate
.vcxprojfile extension.
1.4.0
1.3.2
1.3.1
- Remove language specified for reference URL links in comments.
- Fix PascalCase comment.
1.3.0
- Removed all
end_of_linesettings. Rely on.gitattributesto deal with line endings depending on operating system as described in .gitattributes Best Practices. See #14. - Enable
insert_final_newline = truefor all text files to prevent issues with some tools, mostly on unix based operating systems. See #13. - Made discards a suggestion instead of a warning in #17.
1.2.0
- Added
dotnet_style_prefer_compound_assignmentto prefer++xoverx + 1. - Added
dotnet_code_quality_unused_parameters. Duplicates StyleCop rule I think to remove unused parameters. - Added
csharp_style_expression_bodied_lambdasandchsarp_style_expression_bodied_local_functionsto apply expression bodied members in even more places. - Added
csharp_style_unused_value_expression_statement_preferenceandcsharp_style_unused_value_assignment_preferenceto prefer discards over unused variables. - Added
csharp_style_prefer_index_operatorandcsharp_style_prefer_range_operatorto prefer the new index and range operators. - Added
csharp_prefer_static_local_functionto prefer local functions to be static where possible. - Added
csharp_prefer_simple_using_statementto prefer not to use the new simpler using statements. Contravercial??? I'm worried this new feature can introduce bugs. - Added
csharp_indent_case_contents_when_blockto not indentcaseblocks. - Fixed
csharp_space_around_declaration_statementsto use a valid value as it is now documented. - Moved the following from being listed as undocumented to known sections with links to documentation:
csharp_style_deconstructed_variable_declarationcsharp_style_pattern_local_over_anonymous_functioncsharp_using_directive_placementcsharp_indent_block_contentscsharp_indent_bracescsharp_space_between_method_declaration_parameter_list_parenthesescsharp_space_between_method_declaration_name_and_open_parenthesiscsharp_space_between_method_call_parameter_list_parenthesescsharp_space_between_method_call_empty_parameter_list_parenthesescsharp_space_before_commacsharp_space_before_dotcsharp_space_around_declaration_statements
- Fixed a link.
1.1.0
- Add undocumented
dotnet_style_operator_placement_when_wrapping. See https://github.com/MicrosoftDocs/visualstudio-docs/issues/3641. - Move
csharp_space_after_commaandcsharp_space_after_dotinto documented section. - Fix broken links.