Skip to content

Commit

Permalink
Format code base and cleanup tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
wavded committed Aug 16, 2019
1 parent a50fbcc commit 1d36eec
Show file tree
Hide file tree
Showing 12 changed files with 2,477 additions and 303 deletions.
10 changes: 6 additions & 4 deletions .eslintrc
@@ -1,11 +1,13 @@
{
"extends": ["eslint:recommended", "prettier", "plugin:prettier/recommended"],
"env": {
"node": true
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 8
},
"extends": "eslint:recommended",
"rules": {
"semi": 2,
"quotes": [2, "single"],
"no-console": 0
}
}
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,3 +1,5 @@
node_modules
coverage
.nyc_output
package-lock.json
yarn.lock
7 changes: 7 additions & 0 deletions .prettierrc
@@ -0,0 +1,7 @@
{
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 80,
"trailingComma": "es5"
}
87 changes: 0 additions & 87 deletions Readme.md

This file was deleted.

23 changes: 0 additions & 23 deletions bench/redisbench.js

This file was deleted.

File renamed without changes.

0 comments on commit 1d36eec

Please sign in to comment.