Skip to content

Commit

Permalink
Switch to a Node.js server for testing, cleanup tests and small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sergi committed Sep 20, 2016
1 parent fbba121 commit 39833b0
Show file tree
Hide file tree
Showing 9 changed files with 431 additions and 432 deletions.
12 changes: 12 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@
"no-caller": 1, // disallow use of arguments.caller or arguments.callee
"no-div-regex": 1, // disallow division operators explicitly at beginning of regular expression
"no-else-return": 0, // disallow else after a return in an if
<<<<<<< HEAD
"no-labels": 1, // disallow use of labels for anything other then loops and switches
=======
"no-empty-label": 1, // disallow use of labels for anything other then loops and switches
>>>>>>> Switch to a Node.js server for testing, cleanup tests and small fixes
"no-eq-null": 0, // disallow comparisons to null without a type-checking operator
"no-eval": 1, // disallow use of eval()
"no-extend-native": 1, // disallow adding to native types
Expand Down Expand Up @@ -139,7 +143,11 @@
"quote-props": [1, "as-needed"], // require quotes around object literal property names
"semi": 1, // require or disallow use of semicolons instead of ASI
"sort-vars": 0, // sort variables within the same declaration block
<<<<<<< HEAD
"keyword-spacing": 1, // require a space after certain keywords
=======
"space-after-keywords": 1, // require a space after certain keywords
>>>>>>> Switch to a Node.js server for testing, cleanup tests and small fixes
"space-before-blocks": 1, // require a space before blocks
"space-before-function-paren": [ // disallow a space before function parenthesis
1, "never"
Expand All @@ -149,6 +157,10 @@
],
"space-in-parens": 1, // require or disallow spaces inside parentheses
"space-infix-ops": 1, // require spaces around operators
<<<<<<< HEAD
=======
"space-return-throw-case": 1, // require a space after return, throw, and case
>>>>>>> Switch to a Node.js server for testing, cleanup tests and small fixes
"space-unary-ops": 1, // require a space around word operators such as typeof
"max-nested-callbacks": 0, // specify the maximum depth callbacks can be nested
"one-var": [1, "never"], // allow just one var statement per function
Expand Down
57 changes: 0 additions & 57 deletions .jshintrc

This file was deleted.

4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
- "4.4.7"
- "6.2.2"
os:
- linux
- osx
Expand Down
Loading

0 comments on commit 39833b0

Please sign in to comment.