-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev: set markdown as repository language with
.gitattributes
Add `.gitattributes` file to configure GitHub Linguist to only consider `.md` Markdown files Linguist should ignore other file types
- Loading branch information
1 parent
ddc93bf
commit 49927bc
Showing
3 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Configure Languages for GitHub repository using Linguist | ||
|
||
# ignore all files, except for markdown | ||
docs/** linguist-detectable | ||
*.md linguist-detectable=true | ||
*.css linguist-detectable=false | ||
*.js linguist-detectable=false | ||
*.html linguist-detectable=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,5 +21,6 @@ | |
# ------------------------ | ||
# Version Control | ||
!.gitignore | ||
!.gitattributes | ||
!.github/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters