Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Viber/viber-bot-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.2
Choose a base ref
...
head repository: Viber/viber-bot-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
24 changes: 24 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"rules" : {
"indent": [2, "tab", {"SwitchCase": 1}],
"comma-spacing": [2, {"before": false, "after": true}],
"object-curly-spacing": [2, "always", {"objectsInObjects": false, "arraysInObjects": false}],
"space-infix-ops": [2, {"int32Hint": false}],
"brace-style": [2, "stroustrup", { "allowSingleLine": true }],
"space-before-function-paren": [2, "never"],
"radix": [2, "always"],
"camelcase": [2, {"properties": "always"}],
"keyword-spacing" : [2, {"before": true, "after":true}],
"no-unused-vars" : [2, { "args": "none" }],
"space-before-blocks" : [2, {"keywords": "always"}],
"semi": [2, "always"],
"arrow-spacing": [2, { "before": true, "after": true }],
"no-sequences" : 2,
"strict" : [2, "global"]
},
"env" : {
"es6" : true,
"node" : true
},
"extends" : "eslint:recommended"
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -2,3 +2,4 @@
thumbs.db
*.log
node_modules/
*.iml
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12.13.1
Loading