Skip to content

Commit 6c255cf

Browse files
authored
removed most warnings, allegedly fixed ci, added deleteValue test (kessler#87)
1 parent b981934 commit 6c255cf

16 files changed

+1706
-289
lines changed

.eslintrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"env": {
33
"commonjs": true,
4-
"es6": false,
4+
"es6": true,
55
"node": true,
66
"mocha": true
77
},
@@ -111,7 +111,7 @@
111111
"no-restricted-globals": "error",
112112
"no-shadow-restricted-names": "error",
113113
"no-undef-init": "warn",
114-
"no-undefined": "warn",
114+
"no-undefined": "off",
115115
"no-use-before-define": "warn",
116116
"global-require": "error",
117117
"handle-callback-err": "warn",

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,10 @@ regedit.putValue(values, function (err) {
228228
```
229229
For now this is how its going to be, but in the future this will probably change, possibly in a way that will effect the whole interface.
230230

231+
### regedit.deleteValue([String|Array], [Function])
232+
Deletes one or more values in the registry
233+
**This operation will mutate the keys array**
234+
231235
## Develop
232236

233237
### Run tests
@@ -241,4 +245,4 @@ For now this is how its going to be, but in the future this will probably change
241245
```
242246

243247
## TODO
244-
deleteValue()
248+
None :)

appveyor.yml

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ init:
33

44
environment:
55
matrix:
6-
- nodejs_version: "4"
7-
- nodejs_version: "5"
86
- nodejs_version: "6"
97
- nodejs_version: "7"
108
configuration: "publish"

0 commit comments

Comments
 (0)