改行コードを LF 統一
Open
- Dominant language
- PHP
- Stars
- 92
- Forks
- 97
- Avg merge
- 4d 2h
- Merged PRs (30d)
- 9
Description
PHP ファイルは PHP-CS-Fixer が見張っていると思うので他について。
検出
```
$ git ls-files | grep -P -v '\.(php|jpg|jpeg|png|gif|ico|ttf|woff|pdf|csv)$' | xargs --no-run-if-empty grep -lP '\r'
```
置換
```
$ git ls-files | grep -P -v '\.(php|jpg|jpeg|png|gif|ico|ttf|woff|pdf|csv)$' | xargs --no-run-if-empty sed -i -e "s/\r//g"
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.