Skip to content

Commit 7ce616c

Browse files
committed
Change version to 2.2.0.0
1 parent a54ca6f commit 7ce616c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+428
-422
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Guidelines for contributing to the Roslynator repo.
1212

1313
## Creating Issues
1414

15+
* **DO** create a new issue rather than commenting a closed issue.
1516
* **DO** include analyzer/refactoring/error ID in a title (i.e. RCSxxxx, RRxxxx or CSxxxx).
1617
* **DO** use a descriptive title that identifies the issue or requested feature.
1718
* **DO** specify a detailed description of the issue or requested feature.

ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 2.2.0 (2019-09-28)
2+
3+
#### Analyzers
4+
5+
* Disable analyzer [FormatBinaryOperatorOnNextLine](http://github.com/JosefPihrt/Roslynator/blob/master/docs/analyzers/RCS1029.md) by default.
6+
17
### 2.1.3 (2019-08-06)
28

39
#### Analyzers

docs/analyzers/RCS1018.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RCS1018: Add default access modifier
1+
# RCS1018: Add accessibility modifiers
22

33
| Property | Value |
44
| -------- | ----------- |

docs/analyzers/RCS1029.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
| -------- | ---------- |
55
| Id | RCS1029 |
66
| Category | Formatting |
7-
| Severity | Info |
7+
| Severity | None |
88

99
## Example
1010

docs/analyzers/RCS1073.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RCS1073: Replace if statement with return statement
1+
# RCS1073: Convert 'if' to 'return' statement
22

33
| Property | Value |
44
| -------- | -------------- |

docs/analyzers/RCS1103.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RCS1103: Replace if statement with assignment
1+
# RCS1103: Convert 'if' to assignment
22

33
| Property | Value |
44
| -------- | -------------- |

docs/analyzers/RCS1217.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RCS1217: Replace interpolated string with concatenation
1+
# RCS1217: Convert interpolated string to concatenation
22

33
| Property | Value |
44
| -------- | ----------- |

docs/refactorings/RR0123.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
## Replace do statement with while statement
2-
3-
| Property | Value |
4-
| ------------------ | ----------------------------------------- |
5-
| Id | RR0123 |
6-
| Title | Replace do statement with while statement |
7-
| Syntax | do statement |
8-
| Span | do keyword |
9-
| Enabled by Default | ✓ |
1+
## Convert 'do' to 'while'
2+
3+
| Property | Value |
4+
| ------------------ | ----------------------- |
5+
| Id | RR0123 |
6+
| Title | Convert 'do' to 'while' |
7+
| Syntax | do statement |
8+
| Span | do keyword |
9+
| Enabled by Default | ✓ |
1010

1111
### Usage
1212

docs/refactorings/RR0129.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
## Replace foreach statement with for statement
1+
## Convert 'foreach' to 'for'
22

3-
| Property | Value |
4-
| ------------------ | -------------------------------------------- |
5-
| Id | RR0129 |
6-
| Title | Replace foreach statement with for statement |
7-
| Syntax | foreach statement |
8-
| Enabled by Default | ✓ |
3+
| Property | Value |
4+
| ------------------ | -------------------------- |
5+
| Id | RR0129 |
6+
| Title | Convert 'foreach' to 'for' |
7+
| Syntax | foreach statement |
8+
| Enabled by Default | ✓ |
99

1010
### Usage
1111

12-
![Replace foreach statement with for statement](../../images/refactorings/ReplaceForEachWithFor.png)
12+
![Convert 'foreach' to 'for'](../../images/refactorings/ConvertForEachToFor.png)
1313

1414
## See Also
1515

docs/refactorings/RR0130.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
## Replace for statement with foreach statement
1+
## Convert 'for' to 'foreach'
22

3-
| Property | Value |
4-
| ------------------ | -------------------------------------------- |
5-
| Id | RR0130 |
6-
| Title | Replace for statement with foreach statement |
7-
| Syntax | for statement |
8-
| Enabled by Default | ✓ |
3+
| Property | Value |
4+
| ------------------ | -------------------------- |
5+
| Id | RR0130 |
6+
| Title | Convert 'for' to 'foreach' |
7+
| Syntax | for statement |
8+
| Enabled by Default | ✓ |
99

1010
### Usage
1111

12-
![Replace for statement with foreach statement](../../images/refactorings/ReplaceForWithForEach.png)
12+
![Convert 'for' to 'foreach'](../../images/refactorings/ConvertForToForEach.png)
1313

1414
## See Also
1515

0 commit comments

Comments
 (0)