Revert "Remove dotfiles."

This reverts commit 49fe00521e.
This commit is contained in:
mike.rode
2019-03-03 00:05:01 -06:00
parent 6c57248e6b
commit b78b1c74c9
5 changed files with 41 additions and 0 deletions

8
.npmingnore Normal file
View File

@@ -0,0 +1,8 @@
node_modules
npm-debug.log
.DS_Store
.nyc_output
bab.cache
test
src
coverage

3
.nycrc Normal file
View File

@@ -0,0 +1,3 @@
{
"extends": "@istanbuljs/nyc-config-babel"
}

1
.prettierignore Normal file
View File

@@ -0,0 +1 @@
dist/

21
.prettierrc.json Normal file
View File

@@ -0,0 +1,21 @@
{
"arrowParens": "avoid",
"bracketSpacing": false,
"jsxBracketSameLine": false,
"printWidth": 80,
"proseWrap": "preserve",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false,
"overrides": [
{
"files": "*.json",
"options": {
"printWidth": 200
}
}
]
}

8
.sequelizerc Normal file
View File

@@ -0,0 +1,8 @@
var path = require('path')
module.exports = {
config: path.resolve('server', 'db', 'config', 'config.json'),
'models-path': path.resolve('server', 'db', 'models'),
'seeders-path': path.resolve('server', 'db', 'seeders'),
'migrations-path': path.resolve('server', 'db', 'migrations')
}