Skip to content

Commit 4de3fb1

Browse files
committed
README: undescore format for file naming
1 parent ae13417 commit 4de3fb1

8 files changed

+13
-13
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Why refactor manually if Rector can handle 80% of the task for you?
99

1010
<br>
1111

12-
- **[Overview of all 500+ Rectors](/docs/AllRectorsOverview.md)**
1312
- **[Online DEMO](https://getrector.org/demo)**
13+
- [Overview of all 500+ Rector Rules](/docs/rector_rules_overview.md)
1414

1515
<br>
1616

@@ -113,7 +113,7 @@ parameters:
113113
114114
### B. Standalone Rules
115115
116-
In the end, it's best to combine few of basic sets and drop [particular rules](https://github.com/rectorphp/rector/blob/master/docs/AllRectorsOverview.md) that you want to try:
116+
In the end, it's best to combine few of basic sets and drop [particular rules](/docs/rector_rules_overview.md) that you want to try:
117117
118118
```yaml
119119
# rector.yaml
@@ -263,12 +263,12 @@ parameters:
263263

264264
## More Detailed Documentation
265265

266-
- **[All Rectors Overview](/docs/AllRectorsOverview.md)**
267-
- [Create own Rector](/docs/create_own_rector.md)
268-
- [How Does Rector Work?](/docs/HowItWorks.md)
269-
- [PHP Parser Nodes Overview](/docs/NodesOverview.md)
270-
- [Generate Rector from Recipe](/docs/RectorRecipe.md)
271-
- [Add Checkstyle with your CI](/docs/Checkstyle.md)
266+
- **[All Rectors Overview](/docs/rector_rules_overview.md)**
267+
- [Create own Rule](/docs/create_own_rule.md)
268+
- [Generate Rector from Recipe](/docs/rector_recipe.md)
269+
- [How Does Rector Work?](/docs/how_it_works.md)
270+
- [PHP Parser Nodes Overview](/docs/nodes_overview.md)
271+
- [Add Checkstyle with your CI](/docs/checkstyle.md)
272272

273273
## How to Contribute
274274

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -267,12 +267,12 @@
267267
"vendor/bin/changelog-linker cleanup --ansi"
268268
],
269269
"check-docs": [
270-
"bin/rector dump-rectors | diff --ignore-space-change docs/AllRectorsOverview.md - ",
271-
"bin/rector dump-nodes | diff --ignore-space-change docs/NodesOverview.md - "
270+
"bin/rector dump-rectors | diff --ignore-space-change docs/rector_rules_overview.md - ",
271+
"bin/rector dump-nodes | diff --ignore-space-change docs/nodes_overview.md - "
272272
],
273273
"docs": [
274-
"bin/rector dump-rectors > docs/AllRectorsOverview.md",
275-
"bin/rector dump-nodes > docs/NodesOverview.md"
274+
"bin/rector dump-rectors > docs/rector_rules_overview.md",
275+
"bin/rector dump-nodes > docs/nodes_overview.md"
276276
],
277277
"rector-ci": "bin/rector process --config rector-ci.yaml --dry-run --ansi",
278278
"rector": "bin/rector process --config rector-ci.yaml --ansi"
File renamed without changes.

docs/create_own_rector.md docs/create_own_rule.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 3 Steps to Create Your Own Rector
22

3-
First, make sure it's not covered by [any existing Rectors](/docs/AllRectorsOverview.md).
3+
First, make sure it's not covered by [any existing Rectors](/docs/rector_rules_overview.md).
44

55
Let's say we want to **change method calls from `set*` to `change*`**.
66

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)