Skip to content

Commit a1d52ce

Browse files
committed
run update
1 parent 77aaebc commit a1d52ce

File tree

9 files changed

+180
-59
lines changed

9 files changed

+180
-59
lines changed

.editorconfig

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# http://editorconfig.org
21
root = true
32

43
[*]
@@ -9,14 +8,6 @@ indent_size = 2
98
trim_trailing_whitespace = true
109
insert_final_newline = true
1110

12-
[*.md]
11+
[{**/{actual,fixtures,expected,templates}/**,*.md}]
1312
trim_trailing_whitespace = false
14-
insert_final_newline = false
15-
16-
[{,test/}{actual,fixtures}/**]
17-
trim_trailing_whitespace = false
18-
insert_final_newline = false
19-
20-
[templates/**]
21-
trim_trailing_whitespace = false
22-
insert_final_newline = false
13+
insert_final_newline = false

.eslintrc.json

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
{
2+
"ecmaFeatures": {
3+
"modules": true,
4+
"experimentalObjectRestSpread": true
5+
},
6+
7+
"env": {
8+
"browser": false,
9+
"es6": true,
10+
"node": true,
11+
"mocha": true
12+
},
13+
14+
"globals": {
15+
"document": false,
16+
"navigator": false,
17+
"window": false
18+
},
19+
20+
"rules": {
21+
"accessor-pairs": 2,
22+
"arrow-spacing": [2, { "before": true, "after": true }],
23+
"block-spacing": [2, "always"],
24+
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
25+
"comma-dangle": [2, "never"],
26+
"comma-spacing": [2, { "before": false, "after": true }],
27+
"comma-style": [2, "last"],
28+
"constructor-super": 2,
29+
"curly": [2, "multi-line"],
30+
"dot-location": [2, "property"],
31+
"eol-last": 2,
32+
"eqeqeq": [2, "allow-null"],
33+
"generator-star-spacing": [2, { "before": true, "after": true }],
34+
"handle-callback-err": [2, "^(err|error)$" ],
35+
"indent": [2, 2, { "SwitchCase": 1 }],
36+
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
37+
"keyword-spacing": [2, { "before": true, "after": true }],
38+
"new-cap": [2, { "newIsCap": true, "capIsNew": false }],
39+
"new-parens": 2,
40+
"no-array-constructor": 2,
41+
"no-caller": 2,
42+
"no-class-assign": 2,
43+
"no-cond-assign": 2,
44+
"no-const-assign": 2,
45+
"no-control-regex": 2,
46+
"no-debugger": 2,
47+
"no-delete-var": 2,
48+
"no-dupe-args": 2,
49+
"no-dupe-class-members": 2,
50+
"no-dupe-keys": 2,
51+
"no-duplicate-case": 2,
52+
"no-empty-character-class": 2,
53+
"no-eval": 2,
54+
"no-ex-assign": 2,
55+
"no-extend-native": 2,
56+
"no-extra-bind": 2,
57+
"no-extra-boolean-cast": 2,
58+
"no-extra-parens": [2, "functions"],
59+
"no-fallthrough": 2,
60+
"no-floating-decimal": 2,
61+
"no-func-assign": 2,
62+
"no-implied-eval": 2,
63+
"no-inner-declarations": [2, "functions"],
64+
"no-invalid-regexp": 2,
65+
"no-irregular-whitespace": 2,
66+
"no-iterator": 2,
67+
"no-label-var": 2,
68+
"no-labels": 2,
69+
"no-lone-blocks": 2,
70+
"no-mixed-spaces-and-tabs": 2,
71+
"no-multi-spaces": 2,
72+
"no-multi-str": 2,
73+
"no-multiple-empty-lines": [2, { "max": 1 }],
74+
"no-native-reassign": 0,
75+
"no-negated-in-lhs": 2,
76+
"no-new": 2,
77+
"no-new-func": 2,
78+
"no-new-object": 2,
79+
"no-new-require": 2,
80+
"no-new-wrappers": 2,
81+
"no-obj-calls": 2,
82+
"no-octal": 2,
83+
"no-octal-escape": 2,
84+
"no-proto": 0,
85+
"no-redeclare": 2,
86+
"no-regex-spaces": 2,
87+
"no-return-assign": 2,
88+
"no-self-compare": 2,
89+
"no-sequences": 2,
90+
"no-shadow-restricted-names": 2,
91+
"no-spaced-func": 2,
92+
"no-sparse-arrays": 2,
93+
"no-this-before-super": 2,
94+
"no-throw-literal": 2,
95+
"no-trailing-spaces": 0,
96+
"no-undef": 2,
97+
"no-undef-init": 2,
98+
"no-unexpected-multiline": 2,
99+
"no-unneeded-ternary": [2, { "defaultAssignment": false }],
100+
"no-unreachable": 2,
101+
"no-unused-vars": [2, { "vars": "all", "args": "none" }],
102+
"no-useless-call": 0,
103+
"no-with": 2,
104+
"one-var": [0, { "initialized": "never" }],
105+
"operator-linebreak": [0, "after", { "overrides": { "?": "before", ":": "before" } }],
106+
"padded-blocks": [0, "never"],
107+
"quotes": [2, "single", "avoid-escape"],
108+
"radix": 2,
109+
"semi": [2, "always"],
110+
"semi-spacing": [2, { "before": false, "after": true }],
111+
"space-before-blocks": [2, "always"],
112+
"space-before-function-paren": [2, "never"],
113+
"space-in-parens": [2, "never"],
114+
"space-infix-ops": 2,
115+
"space-unary-ops": [2, { "words": true, "nonwords": false }],
116+
"spaced-comment": [0, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
117+
"use-isnan": 2,
118+
"valid-typeof": 2,
119+
"wrap-iife": [2, "any"],
120+
"yoda": [2, "never"]
121+
}
122+
}

.gitignore

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
1+
# always ignore files
12
*.DS_Store
23
*.sublime-*
3-
_gh_pages
4-
bower_components
4+
5+
# test related, or directories generated by tests
6+
test/actual
7+
actual
8+
coverage
9+
.nyc*
10+
11+
# npm
512
node_modules
613
npm-debug.log
7-
actual
8-
test/actual
14+
15+
# yarn
16+
yarn.lock
17+
yarn-error.log
18+
19+
# misc
20+
_gh_pages
21+
_draft
22+
_drafts
23+
bower_components
24+
vendor
925
temp
1026
tmp
1127
TODO.md
12-
vendor
13-
.idea
14-
benchmark
15-
coverage

.jshintrc

Lines changed: 0 additions & 19 deletions
This file was deleted.

.travis.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1+
sudo: false
2+
os:
3+
- linux
4+
- osx
15
language: node_js
26
node_js:
3-
- "stable"
4-
- "0.12"
5-
- "0.10"
7+
- node
8+
- '6'
9+
- '4'
10+
- '0.12'
11+
- '0.10'
12+
matrix:
13+
allow_failures:
14+
- node_js: '4'
15+
- node_js: '0.12'
16+
- node_js: '0.10'

.verb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# {%= name %} {%= badge("fury") %}
1+
# {%= name %} {%= badge("fury") %} {%= badge("travis") %}
22

33
> {%= description %}
44
@@ -82,7 +82,7 @@ unset();
8282

8383
## License
8484
{%= copyright() %}
85-
{%= license() %}
85+
{%= license %}
8686

8787
***
8888

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015, Jon Schlinkert.
3+
Copyright (c) 2015, 2017, Jon Schlinkert
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*!
22
* unset-value <https://github.com/jonschlinkert/unset-value>
33
*
4-
* Copyright (c) 2015, Jon Schlinkert.
5-
* Licensed under the MIT License.
4+
* Copyright (c) 2015, 2017, Jon Schlinkert.
5+
* Released under the MIT License.
66
*/
77

88
'use strict';

package.json

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
"version": "0.1.1",
55
"homepage": "https://github.com/jonschlinkert/unset-value",
66
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7+
"contributors": [
8+
"<[email protected]> (https://github.com/wtgtybhertgeghgtwtg)",
9+
"Jon Schlinkert <[email protected]> (http://twitter.com/jonschlinkert)"
10+
],
711
"repository": "jonschlinkert/unset-value",
812
"bugs": {
913
"url": "https://github.com/jonschlinkert/unset-value/issues"
@@ -27,6 +31,18 @@
2731
"mocha": "*",
2832
"should": "*"
2933
},
34+
"keywords": [
35+
"del",
36+
"delete",
37+
"key",
38+
"object",
39+
"omit",
40+
"prop",
41+
"property",
42+
"remove",
43+
"unset",
44+
"value"
45+
],
3046
"verb": {
3147
"related": {
3248
"description": "",
@@ -40,17 +56,5 @@
4056
"upsert-value"
4157
]
4258
}
43-
},
44-
"keywords": [
45-
"del",
46-
"delete",
47-
"key",
48-
"object",
49-
"omit",
50-
"prop",
51-
"property",
52-
"remove",
53-
"unset",
54-
"value"
55-
]
59+
}
5660
}

0 commit comments

Comments
 (0)