Skip to content

Commit 4adda75

Browse files
committed
style(md): apply md fixes
1 parent c683a5a commit 4adda75

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -103,34 +103,34 @@ composer req --dev wayofdev/cs-fixer-config
103103

104104
### → Makefile
105105

106-
* If you are using [`Makefile`](https://www.gnu.org/software/make/manual/make.html#Introduction), create a `Makefile` with a `lint-php` and `lint-diff` targets:
106+
- If you are using [`Makefile`](https://www.gnu.org/software/make/manual/make.html#Introduction), create a `Makefile` with a `lint-php` and `lint-diff` targets:
107107

108108
```diff
109109
+APP_RUNNER ?= php
110110
+APP_COMPOSER ?= $(APP_RUNNER) composer
111111
+
112112
+prepare:
113-
+ mkdir -p .build/php-cs-fixer
113+
+ mkdir -p .build/php-cs-fixer
114114
+.PHONY: prepare
115115

116116
+lint-php: prepare ## Fixes code to follow coding standards using php-cs-fixer
117-
+ $(APP_COMPOSER) cs:fix
117+
+ $(APP_COMPOSER) cs:fix
118118
+.PHONY: lint-php
119119

120120
+lint-diff: prepare ## Runs php-cs-fixer in dry-run mode and shows diff which will by applied
121-
+ $(APP_COMPOSER) cs:diff
121+
+ $(APP_COMPOSER) cs:diff
122122
+.PHONY: lint-diff
123123
```
124124

125-
Or, you can check for one of our pre-configured `Makefile` from any of these repositories:
125+
Or, you can check for one of our pre-configured `Makefile` from any of these repositories:
126126

127-
https://github.com/wayofdev/php-cs-fixer-config/blob/master/Makefile
127+
<https://github.com/wayofdev/php-cs-fixer-config/blob/master/Makefile>
128128

129-
https://github.com/wayofdev/laravel-package-tpl/blob/master/Makefile
129+
<https://github.com/wayofdev/laravel-package-tpl/blob/master/Makefile>
130130

131131
### → GitHub Actions
132132

133-
+ To use this package in [GitHub Actions](https://github.com/features/actions), add a `coding-standards.yml` workflow to your repository:
133+
- To use this package in [GitHub Actions](https://github.com/features/actions), add a `coding-standards.yml` workflow to your repository:
134134

135135
```yaml
136136
---
@@ -219,9 +219,9 @@ composer req --dev wayofdev/cs-fixer-config
219219
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
220220
```
221221
222-
Or, you can check for one of our pre-configured workflows from any of these repositories:
222+
Or, you can check for one of our pre-configured workflows from any of these repositories:
223223
224-
https://github.com/wayofdev/php-cs-fixer-config/blob/master/.github/workflows/coding-standards.yml
224+
<https://github.com/wayofdev/php-cs-fixer-config/blob/master/.github/workflows/coding-standards.yml>
225225
226226
<br>
227227

0 commit comments

Comments
 (0)