Skip to content
This repository has been archived by the owner on Nov 30, 2019. It is now read-only.

Commit

Permalink
Merge 001dccf into ef41fd8
Browse files Browse the repository at this point in the history
  • Loading branch information
maal26 committed Oct 11, 2019
2 parents ef41fd8 + 001dccf commit 422acd3
Show file tree
Hide file tree
Showing 14 changed files with 1,058 additions and 541 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 4
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
19 changes: 19 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"env": {
"es6": true
},
"extends": ["eslint:recommended"],
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"linebreak-style": ["error", "unix"],
"no-undef": 0,
"no-console": "off",
"no-prototype-builtins": "off",
"indent": ["error", 4],
"semi": "error",
"quotes": ["error", "single", { "avoidEscape": true }],
"no-unused-vars": 1
}
}
Loading

0 comments on commit 422acd3

Please sign in to comment.