mirror of
https://github.com/scratchfoundation/scratch-audio.git
synced 2025-01-03 11:35:49 -05:00
Merge pull request #37 from cwillisf/standardize-settings
Standardize repository settings
This commit is contained in:
commit
206dce7268
3 changed files with 29 additions and 0 deletions
27
.gitattributes
vendored
Normal file
27
.gitattributes
vendored
Normal 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
1
.gitignore
vendored
|
@ -10,3 +10,4 @@ npm-*
|
|||
/coverage
|
||||
|
||||
/dist.js
|
||||
/dist.js.map
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
var path = require('path');
|
||||
|
||||
module.exports = {
|
||||
devtool: 'cheap-module-source-map',
|
||||
entry: {
|
||||
dist: './src/index.js'
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue