Merge pull request #50497 from akhilgkrishnan/document-rubocop-yml-in-directory-structure

Document .rubocop.yml in rails default file folder structure [skip ci]
This commit is contained in:
Hartley McGuire 2023-12-31 01:06:18 -05:00 committed by GitHub
commit c061e567b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -191,6 +191,7 @@ of the files and folders that Rails creates by default:
|.dockerignore|This file tells Docker which files it should not copy into the container.|
|.gitattributes|This file defines metadata for specific paths in a git repository. This metadata can be used by git and other tools to enhance their behavior. See the [gitattributes documentation](https://git-scm.com/docs/gitattributes) for more information.|
|.gitignore|This file tells git which files (or patterns) it should ignore. See [GitHub - Ignoring files](https://help.github.com/articles/ignoring-files) for more information about ignoring files.|
|.rubocop.yml|This file contains the configuration for RuboCop.|
|.ruby-version|This file contains the default Ruby version.|
Hello, Rails!