pull/1/head
Joe Biellik 8 years ago
parent 37eb28c718
commit 2b859ea587

@ -8,6 +8,6 @@ end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[{.eslintrc,*.json,*.yml,*.pug,*.md}]
[{*.json,*.yml,*.pug,*.md}]
indent_style = space
indent_size = 2

@ -12,6 +12,6 @@
"semi": ["error", "always"],
"no-trailing-spaces": ["warn"],
"comma-dangle": ["error"],
"no-console": ["warn", { allow: ["warn", "error"] }]
"no-console": ["warn", { "allow": ["warn", "error"] }]
}
}

@ -19,8 +19,8 @@
],
"main": "server.js",
"scripts": {
"watch": "./node_modules/.bin/nodemon -L -e js,json",
"lint": "./node_modules/.bin/eslint . && ./node_modules/.bin/pug-lint ./views/"
"watch": "nodemon -L -e js,json",
"lint": "eslint . && pug-lint ./views"
},
"dependencies": {
"babel-core": "^6.1.2",

Loading…
Cancel
Save