Skip to content

Commit 2e54524

Browse files
committedOct 7, 2020
deps: update npm to 7.0.0-rc.3
PR-URL: nodejs#35474 Reviewed-By: Ruy Adorno <[email protected]> Reviewed-By: Ujjwal Sharma <[email protected]> Reviewed-By: Ben Coe <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Shelley Vohr <[email protected]> Reviewed-By: Guy Bedford <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
1 parent 1469984 commit 2e54524

File tree

4,238 files changed

+196173
-300159
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,238 files changed

+196173
-300159
lines changed
 

‎deps/npm/.eslintrc.json

+215
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,215 @@
1+
{
2+
"parserOptions": {
3+
"ecmaVersion": 2020,
4+
"ecmaFeatures": {
5+
"jsx": true
6+
},
7+
"sourceType": "module"
8+
},
9+
10+
"env": {
11+
"es6": true,
12+
"node": true
13+
},
14+
15+
"plugins": [
16+
"import",
17+
"node",
18+
"promise",
19+
"standard"
20+
],
21+
22+
"globals": {
23+
"document": "readonly",
24+
"navigator": "readonly",
25+
"window": "readonly"
26+
},
27+
28+
"rules": {
29+
"accessor-pairs": "error",
30+
"array-bracket-spacing": ["error", "never"],
31+
"arrow-spacing": ["error", { "before": true, "after": true }],
32+
"block-spacing": ["error", "always"],
33+
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
34+
"camelcase": ["error", { "properties": "never" }],
35+
"comma-dangle": ["error", {
36+
"arrays": "never",
37+
"objects": "never",
38+
"imports": "never",
39+
"exports": "never",
40+
"functions": "never"
41+
}],
42+
"comma-spacing": ["error", { "before": false, "after": true }],
43+
"comma-style": ["error", "last"],
44+
"computed-property-spacing": ["error", "never"],
45+
"constructor-super": "error",
46+
"curly": ["error", "multi-line"],
47+
"dot-location": ["error", "property"],
48+
"dot-notation": ["error", { "allowKeywords": true }],
49+
"eol-last": "error",
50+
"eqeqeq": ["error", "always", { "null": "ignore" }],
51+
"func-call-spacing": ["error", "never"],
52+
"generator-star-spacing": ["error", { "before": true, "after": true }],
53+
"handle-callback-err": ["error", "^(err|error)$" ],
54+
"indent": ["error", 2, {
55+
"SwitchCase": 1,
56+
"VariableDeclarator": 1,
57+
"outerIIFEBody": 1,
58+
"MemberExpression": 1,
59+
"FunctionDeclaration": { "parameters": 1, "body": 1 },
60+
"FunctionExpression": { "parameters": 1, "body": 1 },
61+
"CallExpression": { "arguments": 1 },
62+
"ArrayExpression": 1,
63+
"ObjectExpression": 1,
64+
"ImportDeclaration": 1,
65+
"flatTernaryExpressions": true,
66+
"ignoreComments": false,
67+
"ignoredNodes": ["TemplateLiteral *"]
68+
}],
69+
"key-spacing": ["error", { "beforeColon": false, "afterColon": true }],
70+
"keyword-spacing": ["error", { "before": true, "after": true }],
71+
"lines-between-class-members": ["error", "always", { "exceptAfterSingleLine": true }],
72+
"new-cap": ["error", { "newIsCap": true, "capIsNew": false, "properties": true }],
73+
"new-parens": "error",
74+
"no-array-constructor": "error",
75+
"no-async-promise-executor": "error",
76+
"no-caller": "error",
77+
"no-case-declarations": "error",
78+
"no-class-assign": "error",
79+
"no-compare-neg-zero": "error",
80+
"no-cond-assign": "error",
81+
"no-const-assign": "error",
82+
"no-constant-condition": ["error", { "checkLoops": false }],
83+
"no-control-regex": "error",
84+
"no-debugger": "error",
85+
"no-delete-var": "error",
86+
"no-dupe-args": "error",
87+
"no-dupe-class-members": "error",
88+
"no-dupe-keys": "error",
89+
"no-duplicate-case": "error",
90+
"no-empty-character-class": "error",
91+
"no-empty-pattern": "error",
92+
"no-eval": "error",
93+
"no-ex-assign": "error",
94+
"no-extend-native": "error",
95+
"no-extra-bind": "error",
96+
"no-extra-boolean-cast": "error",
97+
"no-extra-parens": ["error", "functions"],
98+
"no-fallthrough": "error",
99+
"no-floating-decimal": "error",
100+
"no-func-assign": "error",
101+
"no-global-assign": "error",
102+
"no-implied-eval": "error",
103+
"no-inner-declarations": ["error", "functions"],
104+
"no-invalid-regexp": "error",
105+
"no-irregular-whitespace": "error",
106+
"no-iterator": "error",
107+
"no-labels": ["error", { "allowLoop": false, "allowSwitch": false }],
108+
"no-lone-blocks": "error",
109+
"no-misleading-character-class": "error",
110+
"no-prototype-builtins": "error",
111+
"no-useless-catch": "error",
112+
"no-mixed-operators": ["error", {
113+
"groups": [
114+
["==", "!=", "===", "!==", ">", ">=", "<", "<="],
115+
["&&", "||"],
116+
["in", "instanceof"]
117+
],
118+
"allowSamePrecedence": true
119+
}],
120+
"no-mixed-spaces-and-tabs": "error",
121+
"no-multi-spaces": "error",
122+
"no-multi-str": "error",
123+
"no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }],
124+
"no-negated-in-lhs": "error",
125+
"no-new": "error",
126+
"no-new-func": "error",
127+
"no-new-object": "error",
128+
"no-new-require": "error",
129+
"no-new-symbol": "error",
130+
"no-new-wrappers": "error",
131+
"no-obj-calls": "error",
132+
"no-octal": "error",
133+
"no-octal-escape": "error",
134+
"no-path-concat": "error",
135+
"no-proto": "error",
136+
"no-redeclare": ["error", { "builtinGlobals": false }],
137+
"no-regex-spaces": "error",
138+
"no-return-assign": ["error", "except-parens"],
139+
"no-self-assign": ["error", { "props": true }],
140+
"no-self-compare": "error",
141+
"no-sequences": "error",
142+
"no-shadow-restricted-names": "error",
143+
"no-sparse-arrays": "error",
144+
"no-tabs": "error",
145+
"no-template-curly-in-string": "error",
146+
"no-this-before-super": "error",
147+
"no-throw-literal": "off",
148+
"no-trailing-spaces": "error",
149+
"no-undef": "error",
150+
"no-undef-init": "error",
151+
"no-unexpected-multiline": "error",
152+
"no-unmodified-loop-condition": "error",
153+
"no-unneeded-ternary": ["error", { "defaultAssignment": false }],
154+
"no-unreachable": "error",
155+
"no-unsafe-finally": 0,
156+
"no-unsafe-negation": "error",
157+
"no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true, "allowTaggedTemplates": true }],
158+
"no-unused-vars": ["error", { "vars": "all", "args": "none", "ignoreRestSiblings": true }],
159+
"no-use-before-define": ["error", { "functions": false, "classes": false, "variables": false }],
160+
"no-useless-call": "error",
161+
"no-useless-computed-key": "error",
162+
"no-useless-constructor": "error",
163+
"no-useless-escape": "error",
164+
"no-useless-rename": "error",
165+
"no-useless-return": "error",
166+
"no-void": "error",
167+
"no-whitespace-before-property": "error",
168+
"no-with": "error",
169+
"object-curly-newline": ["error", { "multiline": true, "consistent": true }],
170+
"object-curly-spacing": ["error", "always"],
171+
"object-property-newline": ["error", { "allowMultiplePropertiesPerLine": true }],
172+
"one-var": ["error", { "initialized": "never" }],
173+
"operator-linebreak": ["error", "after", { "overrides": { "?": "before", ":": "before", "|>": "before" } }],
174+
"padded-blocks": ["error", { "blocks": "never", "switches": "never", "classes": "never" }],
175+
"prefer-const": ["error", {"destructuring": "all"}],
176+
"prefer-promise-reject-errors": "error",
177+
"quote-props": ["error", "as-needed"],
178+
"quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": false }],
179+
"rest-spread-spacing": ["error", "never"],
180+
"semi": ["error", "never"],
181+
"semi-spacing": ["error", { "before": false, "after": true }],
182+
"space-before-blocks": ["error", "always"],
183+
"space-before-function-paren": ["error", "always"],
184+
"space-in-parens": ["error", "never"],
185+
"space-infix-ops": "error",
186+
"space-unary-ops": ["error", { "words": true, "nonwords": false }],
187+
"spaced-comment": ["error", "always", {
188+
"line": { "markers": ["*package", "!", "/", ",", "="] },
189+
"block": { "balanced": true, "markers": ["*package", "!", ",", ":", "::", "flow-include"], "exceptions": ["*"] }
190+
}],
191+
"symbol-description": "error",
192+
"template-curly-spacing": ["error", "never"],
193+
"template-tag-spacing": ["error", "never"],
194+
"unicode-bom": ["error", "never"],
195+
"use-isnan": "error",
196+
"valid-typeof": ["error", { "requireStringLiterals": true }],
197+
"wrap-iife": ["error", "any", { "functionPrototypeMethods": true }],
198+
"yield-star-spacing": ["error", "both"],
199+
"yoda": ["error", "never"],
200+
201+
"import/export": "error",
202+
"import/first": "error",
203+
"import/no-absolute-path": ["error", { "esmodule": true, "commonjs": true, "amd": false }],
204+
"import/no-duplicates": "error",
205+
"import/no-named-default": "error",
206+
"import/no-webpack-loader-syntax": "error",
207+
208+
"node/no-deprecated-api": "error",
209+
"node/process-exit-as-throw": "error",
210+
211+
"promise/param-names": "off",
212+
213+
"standard/no-callback-literal": "error"
214+
}
215+
}

‎deps/npm/.licensee.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,5 @@
55
],
66
"blueOak": "bronze"
77
},
8-
"corrections": true,
9-
"packages": {
10-
"config-chain": "1.1.12",
11-
"cyclist": "0.2.2",
12-
"json-schema": "0.2.3",
13-
"qrcode-terminal": "0.12.0"
14-
}
8+
"corrections": true
159
}

0 commit comments

Comments
 (0)
Please sign in to comment.