mirror of
https://github.com/mjrode/WhatToWatch.git
synced 2025-12-20 12:30:12 -06:00
8
.npmingnore
Normal file
8
.npmingnore
Normal file
@@ -0,0 +1,8 @@
|
||||
node_modules
|
||||
npm-debug.log
|
||||
.DS_Store
|
||||
.nyc_output
|
||||
bab.cache
|
||||
test
|
||||
src
|
||||
coverage
|
||||
1
.prettierignore
Normal file
1
.prettierignore
Normal file
@@ -0,0 +1 @@
|
||||
dist/
|
||||
21
.prettierrc.json
Normal file
21
.prettierrc.json
Normal 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
8
.sequelizerc
Normal 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')
|
||||
}
|
||||
Reference in New Issue
Block a user