| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 5cb77f2 commit 55adee0
531 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,10 +1,8 @@ | |||
| 1 | 1 | { | |
| 2 | 2 | "parserOptions": { | |
| 3 | - "ecmaVersion": 2020, | ||
| 4 | - "ecmaFeatures": { | ||
| 5 | - "jsx": true | ||
| 6 | - }, | ||
| 7 | - "sourceType": "module" | ||
| 3 | + "ecmaVersion": 2018, | ||
| 4 | + "ecmaFeatures": {}, | ||
| 5 | + "sourceType": "script" | ||
| 8 | 6 | }, | |
| 9 | 7 | ||
| 10 | 8 | "env": { | |
@@ -30,20 +28,20 @@ | |||
| 30 | 28 | "array-bracket-spacing": ["error", "never"], | |
| 31 | 29 | "arrow-spacing": ["error", { "before": true, "after": true }], | |
| 32 | 30 | "block-spacing": ["error", "always"], | |
| 33 | - "brace-style": ["error", "1tbs", { "allowSingleLine": true }], | ||
| 31 | + "brace-style": ["error", "1tbs", { "allowSingleLine": false }], | ||
| 34 | 32 | "camelcase": ["error", { "properties": "never" }], | |
| 35 | 33 | "comma-dangle": ["error", { | |
| 36 | - "arrays": "never", | ||
| 37 | - "objects": "never", | ||
| 38 | - "imports": "never", | ||
| 39 | - "exports": "never", | ||
| 34 | + "arrays": "always-multiline", | ||
| 35 | + "objects": "always-multiline", | ||
| 36 | + "imports": "always-multiline", | ||
| 37 | + "exports": "always-multiline", | ||
| 40 | 38 | "functions": "never" | |
| 41 | 39 | }], | |
| 42 | 40 | "comma-spacing": ["error", { "before": false, "after": true }], | |
| 43 | 41 | "comma-style": ["error", "last"], | |
| 44 | 42 | "computed-property-spacing": ["error", "never"], | |
| 45 | 43 | "constructor-super": "error", | |
| 46 | - "curly": ["error", "multi-line"], | ||
| 44 | + "curly": ["error", "multi-or-nest"], | ||
| 47 | 45 | "dot-location": ["error", "property"], | |
| 48 | 46 | "dot-notation": ["error", { "allowKeywords": true }], | |
| 49 | 47 | "eol-last": "error", | |
@@ -77,7 +75,7 @@ | |||
| 77 | 75 | "no-case-declarations": "error", | |
| 78 | 76 | "no-class-assign": "error", | |
| 79 | 77 | "no-compare-neg-zero": "error", | |
| 80 | - "no-cond-assign": "error", | ||
| 78 | + "no-cond-assign": "off", | ||
| 81 | 79 | "no-const-assign": "error", | |
| 82 | 80 | "no-constant-condition": ["error", { "checkLoops": false }], | |
| 83 | 81 | "no-control-regex": "error", | |
@@ -104,25 +102,18 @@ | |||
| 104 | 102 | "no-invalid-regexp": "error", | |
| 105 | 103 | "no-irregular-whitespace": "error", | |
| 106 | 104 | "no-iterator": "error", | |
| 107 | - "no-labels": ["error", { "allowLoop": false, "allowSwitch": false }], | ||
| 105 | + "no-labels": ["error", { "allowLoop": true, "allowSwitch": false }], | ||
| 108 | 106 | "no-lone-blocks": "error", | |
| 109 | 107 | "no-misleading-character-class": "error", | |
| 110 | 108 | "no-prototype-builtins": "error", | |
| 111 | 109 | "no-useless-catch": "error", | |
| 112 | - "no-mixed-operators": ["error", { | ||
| 113 | - "groups": [ | ||
| 114 | - ["==", "!=", "===", "!==", ">", ">=", "<", "<="], | ||
| 115 | - ["&&", "||"], | ||
| 116 | - ["in", "instanceof"] | ||
| 117 | - ], | ||
| 118 | - "allowSamePrecedence": true | ||
| 119 | - }], | ||
| 110 | + "no-mixed-operators": "off", | ||
| 120 | 111 | "no-mixed-spaces-and-tabs": "error", | |
| 121 | 112 | "no-multi-spaces": "error", | |
| 122 | 113 | "no-multi-str": "error", | |
| 123 | 114 | "no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }], | |
| 124 | 115 | "no-negated-in-lhs": "error", | |
| 125 | - "no-new": "error", | ||
| 116 | + "no-new": "off", | ||
| 126 | 117 | "no-new-func": "error", | |
| 127 | 118 | "no-new-object": "error", | |
| 128 | 119 | "no-new-require": "error", | |
@@ -135,8 +126,8 @@ | |||
| 135 | 126 | "no-proto": "error", | |
| 136 | 127 | "no-redeclare": ["error", { "builtinGlobals": false }], | |
| 137 | 128 | "no-regex-spaces": "error", | |
| 138 | - "no-return-assign": ["error", "except-parens"], | ||
| 139 | - "no-self-assign": ["error", { "props": true }], | ||
| 129 | + "no-return-assign": "off", | ||
| 130 | + "no-self-assign": "off", | ||
| 140 | 131 | "no-self-compare": "error", | |
| 141 | 132 | "no-sequences": "error", | |
| 142 | 133 | "no-shadow-restricted-names": "error", | |
@@ -166,16 +157,17 @@ | |||
| 166 | 157 | "no-void": "error", | |
| 167 | 158 | "no-whitespace-before-property": "error", | |
| 168 | 159 | "no-with": "error", | |
| 169 | - "object-curly-newline": ["error", { "multiline": true, "consistent": true }], | ||
| 170 | - "object-curly-spacing": ["error", "always"], | ||
| 160 | + "nonblock-statement-body-position": [2, "below"], | ||
| 161 | + "object-curly-newline": "off", | ||
| 162 | + "object-curly-spacing": "off", | ||
| 171 | 163 | "object-property-newline": ["error", { "allowMultiplePropertiesPerLine": true }], | |
| 172 | 164 | "one-var": ["error", { "initialized": "never" }], | |
| 173 | - "operator-linebreak": ["error", "after", { "overrides": { "?": "before", ":": "before", "|>": "before" } }], | ||
| 165 | + "operator-linebreak": "off", | ||
| 174 | 166 | "padded-blocks": ["error", { "blocks": "never", "switches": "never", "classes": "never" }], | |
| 175 | 167 | "prefer-const": ["error", {"destructuring": "all"}], | |
| 176 | 168 | "prefer-promise-reject-errors": "error", | |
| 177 | 169 | "quote-props": ["error", "as-needed"], | |
| 178 | - "quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": false }], | ||
| 170 | + "quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }], | ||
| 179 | 171 | "rest-spread-spacing": ["error", "never"], | |
| 180 | 172 | "semi": ["error", "never"], | |
| 181 | 173 | "semi-spacing": ["error", { "before": false, "after": true }], | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -725,3 +725,5 @@ Michaël Zasso <targos@protonmail.com> | |||
| 725 | 725 | Gareth Jones <jones258@gmail.com> | |
| 726 | 726 | Jake Champion <me@jakechampion.name> | |
| 727 | 727 | takenspc <taken.spc@gmail.com> | |
| 728 | + iraj <irajtaghlidi@gmail.com> | ||
| 729 | + Michele Azzolari <michele@azzolari.it> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,3 +1,137 @@ | |||
| 1 | + ## 7.0.7 (2020-10-30) | ||
| 2 | + | ||
| 3 | + ### BUG FIXES | ||
| 4 | + | ||
| 5 | + * [`3990b422d`](https://github.com/npm/cli/commit/3990b422d3ff63c54d96b61596bdb8f26a45ca7b) | ||
| 6 | + [#2067](https://github.com/npm/cli/pull/2067) | ||
| 7 | + use sh as default unix shell, not bash | ||
| 8 | + ([@isaacs](https://github.com/isaacs)) | ||
| 9 | + * [`81d6ceef6`](https://github.com/npm/cli/commit/81d6ceef6947e46355eb3ddb05a73da50870dfc1) | ||
| 10 | + [#1975](https://github.com/npm/cli/issues/1975) | ||
| 11 | + fix npm exec on folders missing package.json | ||
| 12 | + ([@ruyadorno](https://github.com/ruyadorno)) | ||
| 13 | + * [`2a680e91a`](https://github.com/npm/cli/commit/2a680e91a2be1f3f03a6fbd946f74628ee1cb370) | ||
| 14 | + [#2083](https://github.com/npm/cli/pull/2083) | ||
| 15 | + delete the contents of `node_modules` only in `npm ci` | ||
| 16 | + ([@nlf](https://github.com/nlf)) | ||
| 17 | + * [`2636fe1f4`](https://github.com/npm/cli/commit/2636fe1f45383cb1b6fc164564dc49318815db37) | ||
| 18 | + [#2086](https://github.com/npm/cli/pull/2086) | ||
| 19 | + disable banner output if loglevel is silent in `npm run-script` | ||
| 20 | + ([@macno](https://github.com/macno)) | ||
| 21 | + | ||
| 22 | + ### DEPENDENCIES | ||
| 23 | + | ||
| 24 | + * [`4156f053e`](https://github.com/npm/cli/commit/4156f053ee8712a4b53a210e62fba1e6562ba43a) | ||
| 25 | + `@npmcli/run-script@1.7.4` | ||
| 26 | + * restore the default `npm start` script | ||
| 27 | + * [`1900ae9ad`](https://github.com/npm/cli/commit/1900ae9adecd227dd6f8b49de61a99c978ba89cf) | ||
| 28 | + `@npmcli/promise-spawn@1.3.2` | ||
| 29 | + * fix errors when processing scripts as root | ||
| 30 | + * [`8cb0c166c`](https://github.com/npm/cli/commit/8cb0c166ccc019146a7a94d13c12723f001d2551) | ||
| 31 | + `@npmcli/arborist@1.0.6` | ||
| 32 | + * make sure missing bin links get set on reify | ||
| 33 | + | ||
| 34 | + ## 7.0.6 (2020-10-27) | ||
| 35 | + | ||
| 36 | + ### BUG FIXES | ||
| 37 | + | ||
| 38 | + * [`46c7f792a`](https://github.com/npm/cli/commit/46c7f792ab16dd0b091e1ad6d37de860c8885883) | ||
| 39 | + [#2047](https://github.com/npm/cli/pull/2047) | ||
| 40 | + [#1935](https://github.com/npm/cli/issues/1935) | ||
| 41 | + skip the prompt when in a known ci environment | ||
| 42 | + ([@nlf](https://github.com/nlf)) | ||
| 43 | + * [`f8f6e1fad`](https://github.com/npm/cli/commit/f8f6e1fad8057edc02e4ce4382b1bc086d01211c) | ||
| 44 | + [#2049](https://github.com/npm/cli/pull/2049) | ||
| 45 | + properly remove pycache in release script | ||
| 46 | + ([@MylesBorins](https://github.com/MylesBorins)) | ||
| 47 | + * [`5db95b393`](https://github.com/npm/cli/commit/5db95b393e9c461ad34c1774f3515c322bf375bf) | ||
| 48 | + [#2050](https://github.com/npm/cli/pull/2050) | ||
| 49 | + pack: do not show individual files of bundled deps | ||
| 50 | + ([@isaacs](https://github.com/isaacs)) | ||
| 51 | + * [`3ee8f3b34`](https://github.com/npm/cli/commit/3ee8f3b34055da2ef1e735e1a06f64593512f1e3) | ||
| 52 | + [#2051](https://github.com/npm/cli/pull/2051) | ||
| 53 | + view: Better errors when package.json is not JSON | ||
| 54 | + ([@isaacs](https://github.com/isaacs)) | ||
| 55 | + | ||
| 56 | + ### DEPENDENCIES | ||
| 57 | + | ||
| 58 | + * [`99ae633f6`](https://github.com/npm/cli/commit/99ae633f6ccc8aa93dc3dcda863071658b0653db) | ||
| 59 | + `libnpmversion@1.0.6` | ||
| 60 | + - respect gitTagVersion = false | ||
| 61 | + * [`d4173f58d`](https://github.com/npm/cli/commit/d4173f58ddefdd5456145f34f3c9f4ba5fca407e) | ||
| 62 | + `@npmcli/promise-spawn@1.3.1` | ||
| 63 | + - do not return empty buffer when stdio is inherited | ||
| 64 | + - attach child process to returned promise | ||
| 65 | + * [`c09380fa5`](https://github.com/npm/cli/commit/c09380fa51b720141a9971602f4bb7aabd4d6242) | ||
| 66 | + `@npmcli/run-script@1.7.3` | ||
| 67 | + - forward SIGINT and SIGTERM to children that inherit stdio | ||
| 68 | + * [`b154861ad`](https://github.com/npm/cli/commit/b154861ad244b6a14020c43738d0cce1948bfdd3) | ||
| 69 | + `@npmcli/arborist@1.0.5` | ||
| 70 | + * [`ffea6596b`](https://github.com/npm/cli/commit/ffea6596b8653da32a2b4c9a4903970e7146eee4) | ||
| 71 | + `agent-base@6.0.2` | ||
| 72 | + - support http proxy for https registries | ||
| 73 | + | ||
| 74 | + ## 7.0.5 (2020-10-23) | ||
| 75 | + | ||
| 76 | + * [`77ad86b5e`](https://github.com/npm/cli/commit/77ad86b5eedf139dda3329a6686d5f104dc233bb) | ||
| 77 | + Merge docs deps with main project | ||
| 78 | + | ||
| 79 | + ## 7.0.4 (2020-10-23) | ||
| 80 | + | ||
| 81 | + ### DOCUMENTATION | ||
| 82 | + | ||
| 83 | + * [`cc026daf8`](https://github.com/npm/cli/commit/cc026daf8c8330256de01375350a1407064562f9) | ||
| 84 | + docs: `npm-dedupe` through `npm-install` | ||
| 85 | + * [`aec77acf8`](https://github.com/npm/cli/commit/aec77acf886d73f85e747cafdf7a2b360befba16) | ||
| 86 | + [#1915](https://github.com/npm/cli/pull/1915) | ||
| 87 | + use "dockhand" for faster static documentation generation | ||
| 88 | + ([@ethomson](https://github.com/ethomson)) | ||
| 89 | + * [`aeb10d210`](https://github.com/npm/cli/commit/aeb10d210816cf6829e0ac557c79d9efd8c4bdd1) | ||
| 90 | + [#2024](https://github.com/npm/cli/pull/2024) | ||
| 91 | + Fix post-install script name | ||
| 92 | + ([@irajtaghlidi](https://github.com/irajtaghlidi)) | ||
| 93 | + | ||
| 94 | + ### BUG FIXES | ||
| 95 | + | ||
| 96 | + * [`59e8dd6c6`](https://github.com/npm/cli/commit/59e8dd6c621f9a5c6e0b65533d8256be87a8e0d3) | ||
| 97 | + [#2015](https://github.com/npm/cli/issues/2015) | ||
| 98 | + [#2016](https://github.com/npm/cli/pull/2016) | ||
| 99 | + Properly set `npm_command` environment variable. | ||
| 100 | + | ||
| 101 | + ### TESTS | ||
| 102 | + | ||
| 103 | + * [`39ad1ad9e`](https://github.com/npm/cli/commit/39ad1ad9e1e1a9530db5b90a588b5081b71abc8d) | ||
| 104 | + [#2001](https://github.com/npm/cli/pull/2001) | ||
| 105 | + `npm config` tests | ||
| 106 | + ([@ruyadorno](https://github.com/ruyadorno)) | ||
| 107 | + * [`b9c1caa8e`](https://github.com/npm/cli/commit/b9c1caa8e4cc7c900d09657425ea361db5974319) | ||
| 108 | + [#2026](https://github.com/npm/cli/pull/2026) | ||
| 109 | + `npm owner` test and refactor | ||
| 110 | + ([@ruyadorno](https://github.com/ruyadorno)) | ||
| 111 | + | ||
| 112 | + ### DEPENDENCIES | ||
| 113 | + | ||
| 114 | + * [`ed6e6a9d3`](https://github.com/npm/cli/commit/ed6e6a9d3c36ffc5fb77fc25b6d66dbcb26beeb9) | ||
| 115 | + `eslint-plugin-standard@4.0.2` | ||
| 116 | + * [`b737ee999`](https://github.com/npm/cli/commit/b737ee99961364827bacf210a3e5ca5d2b7edad2) | ||
| 117 | + [#2009](https://github.com/npm/cli/issues/2009) | ||
| 118 | + [#2007](https://github.com/npm/cli/issues/2007) | ||
| 119 | + `npm-packlist@2.1.4`: | ||
| 120 | + | ||
| 121 | + * Maintain order in package.json files array globs | ||
| 122 | + * Strip slashes from package files list results | ||
| 123 | + | ||
| 124 | + * [`783965508`](https://github.com/npm/cli/commit/783965508d49f8ab0d8ceff38bee700cd0a06a54) | ||
| 125 | + [#1997](https://github.com/npm/cli/issues/1997) | ||
| 126 | + [#2000](https://github.com/npm/cli/issues/2000) | ||
| 127 | + [#2005](https://github.com/npm/cli/issues/2005) | ||
| 128 | + `@npmcli/arborist@1.0.4` | ||
| 129 | + | ||
| 130 | + * Ensure that root is added when root.meta is set | ||
| 131 | + * Include all edges in explain() output when a root edge exists | ||
| 132 | + * Do not conflict on meta-peers that will not be replaced | ||
| 133 | + * Install peerOptionals if explicitly requested, or dev | ||
| 134 | + | ||
| 1 | 135 | ## 7.0.3 (2020-10-20) | |
| 2 | 136 | ||
| 3 | 137 | ### BUG FIXES | |
| Back | FazBrowse Home | New Git URL |
0 commit comments