forked from doublespeakgames/adarkroom
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add convention pieces. jshintrc and gitattributes
- Loading branch information
1 parent
c87541b
commit eee2bff
Showing
2 changed files
with
20 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,15 @@ | ||
# Default | ||
* text=auto | ||
|
||
# Mandate conversion to LF (unix) line endings. | ||
*.js text eol=lf | ||
*.css text eol=lf | ||
*.html text eol=lf | ||
*.md text eol=lf | ||
*.py text eol=lf | ||
|
||
# Binary files so don't modify | ||
*.ico binary | ||
*.png binary | ||
*.jpg binary | ||
*.xlsx binary |
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,5 @@ | ||
{ | ||
"eqnull": true, | ||
"sub": true, | ||
"multistr": true | ||
} |