diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..dec18e026 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 000000000..0be2ce1c6 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,5 @@ +{ + "eqnull": true, + "sub": true, + "multistr": true +}