Merge branch 'master' into dev-watch

This commit is contained in:
Sean Boult 2018-02-11 13:26:14 -06:00 committed by GitHub
commit 3ff043ece7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 25 additions and 0 deletions

14
.editorconfig Normal file
View File

@ -0,0 +1,14 @@
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = tab
trim_trailing_whitespace = true
quote_type = double
[*.{yml,yaml}]
indent_style = space
indent_size = 2

View File

@ -1,4 +1,5 @@
module.exports = { module.exports = {
"root": true,
"env": { "env": {
"es6": true, "es6": true,
"browser": true "browser": true

5
src/.eslintrc.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
"env": {
"browser": true
}
}

5
tools/.eslintrc.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
"env": {
"node": true
}
}