Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Pov committed Oct 30, 2019
1 parent 6549829 commit 03c253e
Show file tree
Hide file tree
Showing 5 changed files with 3,558 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Normalizes editor configuration.
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = LF
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
16 changes: 16 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"rules": {
"no-multiple-empty-lines": "warn",
"no-var": "error",
"prefer-const": "error"
}
};
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.info('well done, dude !');
Loading

0 comments on commit 03c253e

Please sign in to comment.