Merge pull request #37 from cwillisf/standardize-settings

Standardize repository settings
This commit is contained in:
Chris Willis-Ford 2017-04-19 09:51:22 -07:00 committed by GitHub
commit 206dce7268
3 changed files with 29 additions and 0 deletions

27
.gitattributes vendored Normal file
View file

@ -0,0 +1,27 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
# Explicitly specify line endings for as many files as possible.
# People who (for example) rsync between Windows and Linux need this.
# File types which we know are binary
*.wav binary
# Prefer LF for most file types
*.js text eol=lf
*.js.map text eol=lf
*.json text eol=lf
*.md text eol=lf
*.yml text eol=lf
*.txt text eol=lf
# Prefer LF for these files
.editorconfig text eol=lf
.eslintignore text eol=lf
.eslintrc text eol=lf
.gitattributes text eol=lf
.gitignore text eol=lf
.npmignore text eol=lf
LICENSE text eol=lf
# Use CRLF for Windows-specific file types

1
.gitignore vendored
View file

@ -10,3 +10,4 @@ npm-*
/coverage
/dist.js
/dist.js.map

View file

@ -1,6 +1,7 @@
var path = require('path');
module.exports = {
devtool: 'cheap-module-source-map',
entry: {
dist: './src/index.js'
},