Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Jul 11, 2020
1 parent a203f99 commit 3d7abfd
Show file tree
Hide file tree
Showing 5 changed files with 388 additions and 374 deletions.
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
test/stubs
docs/examples
tmp
test
trial
6 changes: 4 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
module.exports = {
extends: 'eslint:recommended',
env: {
node: true
node: true,
es6: true
},
"parserOptions": {
"ecmaVersion": 10
},
rules: {
'no-console': 0
'no-console': 0,
'no-unused-vars': [2,{args:'none'}]
}
}
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,9 @@ Or... you can use <a href="http://redis.io">redis</a>: <a href="https://github.c
The unit tests require a running memcached and redis.


## Actions

### _plugin:entity-cache, cmd:stats_

Returns a JSON object containing the current hit/miss counts of the cache.
<!--START:options-->
<!--END:options-->


<!--START:action-list-->
Expand Down
Loading

0 comments on commit 3d7abfd

Please sign in to comment.