1
0
mirror of https://github.com/gitattributes/gitattributes.git synced 2025-01-22 08:18:50 -05:00

refactor: Ignore all rc and ignore files (#108)

* Describe all rc and ignore files with pattern

- `*.*rc ` match all RC files (like `.babelrc`)
- `*.*ignore` match all 'ignore' files (like `.npmignore`)

* chore: Fix capitalisation

Co-authored-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Nikolay Borzov 2020-02-27 23:20:37 +04:00 committed by GitHub
parent 809623f545
commit b1fa58eb0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,7 +51,6 @@
*.xhtml text diff=html
# Docker
*.dockerignore text
Dockerfile text
# Documentation
@ -97,35 +96,17 @@ TODO text
*.twig text
*.vue text
# Linters
.csslintrc text
.eslintrc text
.eslintignore text
.htmlhintrc text
.jscsrc text
.jshintrc text
.jshintignore text
.stylelintrc text
# Configs
*.bowerrc text
*.cnf text
*.conf text
*.config text
.babelrc text
.browserslistrc text
.editorconfig text
.env text
.gitattributes text
.gitconfig text
.htaccess text
.mocharc text
.nycrc text
.prettierrc text
.prettierignore text
*.lock text -diff
package-lock.json text -diff
*.npmignore text
*.toml text
*.yaml text
*.yml text
@ -135,7 +116,6 @@ makefile text
# Heroku
Procfile text
.slugignore text
# Graphics
*.ai binary
@ -211,3 +191,9 @@ Procfile text
# Executables
*.exe binary
*.pyc binary
# RC files (like .babelrc or .eslintrc)
*.*rc text
# Ignore files (like .npmignore or .gitignore)
*.*ignore text