matthewmueller / x-ray

The next web scraper. See through the <html> noise.
MIT License
5.87k stars 349 forks source link

Update dependency standard to v10 - autoclosed #297

Closed renovate[bot] closed 6 years ago

renovate[bot] commented 6 years ago

This Pull Request updates dependency standard from v6.0.8 to v10.0.3

Release Notes ### [`v7.0.0`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​700---2016-05-02) ##### Changes - Upgrade eslint to version ~2.9.0 - Remove "rules" configuration option [#​367](`https://github.com/standard/standard/issues/367`) from `package.json` (Reasoning is [here](`https://github.com/standard/standard/issues/399`#issuecomment-180961891)) ##### New rules *Estimated % of affected standard users, based on test suite* - Require camelCase ([camelcase](http://eslint.org/docs/rules/camelcase)) [4%] - Disallow unnecessary escape usage ([no-useless-escape](http://eslint.org/docs/rules/no-useless-escape)) [4% -- but, including many bugs] - Disallow duplicate imports ([no-duplicate-imports](http://eslint.org/docs/rules/no-duplicate-imports)) [0%] - Disallow unmodified conditions of loops ([no-unmodified-loop-condition](http://eslint.org/docs/2.0.0/rules/no-unmodified-loop-condition)) [0%] - Disallow whitespace before properties ([no-whitespace-before-property](http://eslint.org/docs/2.0.0/rules/no-whitespace-before-property)) [0%] - Disallow control flow statements in `finally` blocks ([no-unsafe-finally](http://eslint.org/docs/rules/no-unsafe-finally)) [0%] - Disallow unnecessary computed property keys on objects ([no-useless-computed-key](http://eslint.org/docs/rules/no-useless-computed-key)) [0%] - Validate spacing before closing bracket in JSX ([react/jsx-space-before-closing](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-space-before-closing.md)) [0%] ##### Removed rules - Require parens in arrow function arguments ([arrow-parens](http://eslint.org/docs/rules/arrow-parens)) --- ### [`v7.0.1`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​701---2016-05-04) - Relax "no-duplicate-imports" rule to not include `export` so the following is allowed: ```js import { foo } from 'bar' export * from 'bar' ``` --- ### [`v7.1.0`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​710---2016-05-16) - Upgrade eslint to version ~2.10.2 --- ### [`v7.1.1`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​711---2016-05-26) - Add back full node 0.10, 0.12 support --- ### [`v7.1.2`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​712---2016-06-03) - Fix install errors for some users by updating eslint peer dependency --- ### [`v8.0.0`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​800---2016-08-23) This release contains a bunch of goodies, including new rules that catch potential programmer errors (i.e. bugs) and enforce additional code consistency. However, the best feature is surely the new `--fix` command line flag to automatically fix problems. If you ever used [`standard-format`](https://www.npmjs.com/package/standard-format) and ran into issues with the lack of ES2015+ support, you'll be happy about `--fix`. `standard --fix` is built into `standard` v8.0.0 for maximum convenience, it supports ES2015, and it's lightweight (no additional dependencies since it's part of ESLint which powers `standard`). Lots of problems are already fixable, and more are getting added with each ESLint release. `standard` also outputs a message ("Run `standard --fix` to automatically fix some problems.") when it detects problems that can be fixed automatically so you can save time! With `standard` v8.0.0, we are also dropping support for Node.js versions prior to v4. Node.js 0.10 and 0.12 are in maintenance mode and will be unsupported at the end of 2016. Node.js 4 is the current LTS version. If you are using an older version of Node.js, we recommend upgrading to at least Node.js 4 as soon as possible. If you are unable to upgrade to Node.js 4 or higher, then we recommend continuing to use `standard` v7.x until you are ready to upgrade Node.js. **Important:** We will not be updating the `standard` v7.x versions going forward. All bug fixes and enhancements will land in `standard` v8.x. Full changelog below. Cheers! ##### New features - Upgrade to ESLint v3 (http://eslint.org/docs/user-guide/migrating-to-3.0.0) [#​565](`https://github.com/standard/standard/pull/565`) - **BREAKING:** Drop support for node < 4 (this was a decision made by the ESLint team) - Expose ESLint's `--fix` command line flag [#​540](`https://github.com/standard/standard/issues/540`) [standard-engine/#​107](`https://github.com/Flet/standard-engine/issues/107`) - Lightweight, no additional dependencies, fixes dozens of rules automatically ##### New rules *(Estimated % of affected standard users, based on test suite in parens)* - Enforce placing object properties on separate lines ([object-property-newline](http://eslint.org/docs/rules/object-property-newline)) [#​524](`https://github.com/standard/standard/issues/524`) (2%) - Require block comments to be balanced ([spaced-comment "balanced"](http://eslint.org/docs/rules/spaced-comment)) [#​572](`https://github.com/standard/standard/issues/572`) (2%) - Disallow constant expressions in conditions ([no-constant-condition](http://eslint.org/docs/rules/no-constant-condition)) [#​563](`https://github.com/standard/standard/issues/563`) (1%) - Disallow renaming import, export, and destructured assignments to the same name ([no-useless-rename](http://eslint.org/docs/rules/no-useless-rename)) [#​537](`https://github.com/standard/standard/issues/537`) (0%) - Disallow spacing between rest and spread operators and their expressions ([rest-spread-spacing](http://eslint.org/docs/rules/rest-spread-spacing)) [#​567](`https://github.com/standard/standard/issues/567`) (0%) - Disallow the Unicode Byte Order Mark (BOM) ([unicode-bom](http://eslint.org/docs/rules/unicode-bom)) [#​538](`https://github.com/standard/standard/issues/538`) (0%) - Disallow assignment to native objects/global variables ([no-global-assign](http://eslint.org/docs/rules/no-global-assign)) [#​596](`https://github.com/standard/standard/issues/596`) (0%) - Disallow negating the left operand of relational operators ([no-unsafe-negation](http://eslint.org/docs/rules/no-unsafe-negation)) [#​595](`https://github.com/standard/standard/issues/595`) (0%) - Disallow template literal placeholder syntax in regular strings ([no-template-curly-in-string](http://eslint.org/docs/rules/no-template-curly-in-string)) [#​594](`https://github.com/standard/standard/issues/594`) (0%) - Disallow tabs in file ([no-tabs](http://eslint.org/docs/rules/no-tabs)) [#​593](`https://github.com/standard/standard/issues/593`) (0%) ##### Changed rules - Relax rule: Allow template literal strings (backtick strings) to avoid escaping
 [#​421](`https://github.com/standard/standard/issues/421`) - Relax rule: Do not enforce spacing around * in generator functions (`https://github.com/standard/standard/issues/564`#issuecomment-234699126) - This is a temporary workaround for `babel` users who use async generator functions. --- ### [`v8.1.0`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​810---2016-09-17) - Update ESLint from 3.3.x to 3.5.x - Around 10 additional rules are now fixable with `standard --fix` --- ### [`v8.2.0`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​820---2016-09-26) For many users, this release should eliminate the need to specify `babel-eslint` as a custom parser, since `standard` can now parse ES7 (i.e. ES2016) syntax out of the box. - Support ES7 (i.e. ES2016) syntax. - Update ESLint from 3.5.x to 3.6.x - 4 additional rules are now fixable with `standard --fix` --- ### [`v8.3.0`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​830---2016-09-29) The last release (`8.2.0`) added ES7 support. This release (`8.3.0`) adds ES8 support ...just 3 days later! This release should eliminate the need to specify `babel-eslint` as a custom parser, since `standard` can now parse ES8 (i.e. ES2017) syntax out of the box. That means `async` and `await` will just work. - Support ES8 (i.e. ES2017) syntax. --- ### [`v8.4.0`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​840---2016-10-10) - Update ESLint from 3.6.x to 3.7.x - 5 additional rules are now fixable with `standard --fix` - Use more conservative semver ranges [#​654](`https://github.com/standard/standard/issues/654`) --- ### [`v8.5.0`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​850---2016-10-25) - Update ESLint from 3.7.x to 3.8.x - 2 additional rules are now fixable with `standard --fix` --- ### [`v8.6.0`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​860---2016-11-22) - Update ESLint from 3.8.x to 3.10.x - 3 additional rules are now fixable with `standard --fix` --- ### [`v9.0.0`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​900---2017-02-28) It's time for a new major version of `standard`! As usual, this release contains a bunch of awesomeness to help you keep your code in tip-top shape! We've added several new rules designed to **catch potential programmer errors** (i.e. bugs), as well as rules to make programmer intent **more explicit** in certain circumstances. This release continues our trend of tightening up rules so that, wherever possible, there's one "right" way to do things. This design goal is intended to reduce the time that teams and maintainers spend giving code review feedback in pull requests. When you upgrade, consider running `standard --fix` to automatically fix some of the errors caught by the new rules in this version. *Note: If you use the Chai test framework, you will need to make some changes to your tests to improve their robustness. [Read about the changes you need to make](`https://github.com/standard/standard/issues/690`#issuecomment-278533482).* ##### New features - Update ESLint from 3.10.x to 3.15.x - 3 additional rules are now fixable with `standard --fix` ##### New rules *(Estimated % of affected standard users, based on test suite in parens)* - Disallow mixing different operators without parens ([no-mixed-operators](http://eslint.org/docs/rules/no-mixed-operators)) [#​566](`https://github.com/standard/standard/issues/566`) (5%) - Enforce 1 newline at end of file (previously 1 or 2 were ok) ([no-multiple-empty-lines](http://eslint.org/docs/rules/no-multiple-empty-lines)) [#​733](`https://github.com/standard/standard/issues/733`) (3%) - Disallow Unused Expressions ([no-unused-expressions](http://eslint.org/docs/rules/no-unused-expressions)) [#​690](`https://github.com/standard/standard/issues/690`) (3%) - Note: this affects users of the Chai test framework. [Read about the changes you need to make](`https://github.com/standard/standard/issues/690`#issuecomment-278533482). - Disallow redundant return statements ([no-useless-return](http://eslint.org/docs/rules/no-useless-return)) [#​694](`https://github.com/standard/standard/issues/694`) (1%) - Disallow Incorrect Early Use ([no-use-before-define](http://eslint.org/docs/rules/no-use-before-define)) [#​636](`https://github.com/standard/standard/issues/636`) (0%) - Enforce that Promise rejections are passed an Error object as a reason ([prefer-promise-reject-errors](http://eslint.org/docs/rules/prefer-promise-reject-errors)) [#​777](`https://github.com/standard/standard/issues/777`) (0%) - Enforce comparing `typeof` expressions against string literals ([valid-typeof](http://eslint.org/docs/rules/valid-typeof)) [#​629](`https://github.com/standard/standard/issues/629`) (0%) - Enforce spacing around * in generator functions ([generator-star-spacing](http://eslint.org/docs/rules/generator-star-spacing)) [#​724](`https://github.com/standard/standard/issues/724`) (0%) - Disallow Unnecessary Labels ([no-extra-label](http://eslint.org/docs/rules/no-extra-label)) [#​736](`https://github.com/standard/standard/issues/736`) (0%) - Disallow spacing between template tags and their literals ([template-tag-spacing](http://eslint.org/docs/rules/template-tag-spacing)) [#​755](`https://github.com/standard/standard/issues/775`) (0%) - Disallow padding within switch statements and classes ([padded-blocks](http://eslint.org/docs/rules/padded-blocks)) [#​610](`https://github.com/standard/standard/issues/610`) (0%) - Enforce that Symbols are passed a description ([symbol-description](http://eslint.org/docs/rules/symbol-description)) [#​630](`https://github.com/standard/standard/issues/630`) (0%) ##### Changed rules - Relax rule: allow TypeScript Triple-Slash Directives ([spaced-comment](http://eslint.org/docs/rules/spaced-comment)) [#​660](`https://github.com/standard/standard/issues/660`) - Relax rule: allow Flow Comments ([spaced-comment](http://eslint.org/docs/rules/spaced-comment)) [#​661](`https://github.com/standard/standard/issues/661`) --- ### [`v9.0.1`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​901---2017-03-07) ##### Changed rules - Relax rule: Allow mixing basic operators without parens ([no-mixed-operators](http://eslint.org/docs/rules/no-mixed-operators)) [#​816](`https://github.com/standard/standard/issues/816`) - Specifically, these operators: `+`, `-`, `*`, `/`, `%`, and `**` --- ### [`v9.0.2`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​902---2017-03-17) ##### Changed rules - Relax rule: Allow tagged template string expressions ([no-unused-expressions](http://eslint.org/docs/rules/no-unused-expressions)) [#​822](`https://github.com/standard/standard/issues/822`) --- ### [`v10.0.0`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​1000---2017-04-04) **`standard` just turned 10.0.0!** 🎉 As with every new major release, there are lots of new rules in 10.0.0 designed to help catch bugs and make programmer intent more explicit. `standard` is more popular than ever – **330,000 downloads per month!** It's even more popular – **670,000 downloads per month** – if you include the [shareable ESLint config](https://www.npmjs.com/package/eslint-config-standard) that we also publish. The most important change in 10.0.0 is that **using deprecated Node.js APIs is now considered an error**. It's finally time to update those dusty old APIs! Deprecated APIs are problematic because they may print warning messages in the console in recent versions of Node.js. This often confuses users and leads to unnecessary support tickets for project maintainers. Some deprecated APIs are even insecure (or at least prone to incorrect usage) which can have serious security implications. For that reason, `standard` now considers usage of `Buffer(num)` to be an error, since this function returns uninitialized program memory which could contain confidential information like passwords or keys. Instead of `Buffer(num)`, consider using `Buffer.alloc(num)` or `Buffer.from(obj)` which make the programmer's intent clearer. These functions exist in all currently supported versions of Node.js, including Node.js 4.x. For more background, [see this Node.js issue](`https://github.com/nodejs/node/issues/4660`). We also improved some rules to support common patterns in code bases that use React, JSX, and Flow. When you upgrade, consider running `standard --fix` to automatically fix some of the issues caught by this new version. ##### New features - Update ESLint from 3.15.x to 3.19.x. - Node.js API: Add `standard.lintTextSync` method ##### New rules *(Estimated % of affected standard users, based on test suite in parens)* - Disallow using deprecated Node.js APIs ([node/no-deprecated-api](https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-deprecated-api.md)) [#​693](`https://github.com/standard/standard/issues/693`) (13%) - Ensures that code always runs without warnings on the latest versions of Node.js - Ensures that safe Buffer methods (`Buffer.from()`, `Buffer.alloc()`) are used instead of `Buffer()` - Enforce callbacks always called with Node.js-style error first ([standard/no-callback-literal](https://github.com/xjamundx/eslint-plugin-standard#rules-explanations)) [#​623](`https://github.com/standard/standard/issues/623`) (3%) - Functions named `callback` or `cb` must be invoked with `null`, `undefined`, or an `Error` as the first argument - Disallows using a string instead of an `Error` object - Disallows confusing callbacks that do not follow the standard Node.js pattern - Disallow any imports that come after non-import statements ([import/first](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/first.md)) [#​806](`https://github.com/standard/standard/issues/806`) (1%) - Disallow unnecessary return await ([no-return-await](http://eslint.org/docs/rules/no-return-await)) [#​695](`https://github.com/standard/standard/issues/695`) (0%) - Disallow comma-dangle in functions ([comma-dangle](http://eslint.org/docs/rules/comma-dangle)) [#​787](`https://github.com/standard/standard/issues/787`) (0%) - Disallow repeated exports of names or defaults ([import/export](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/export.md)) [#​806](`https://github.com/standard/standard/issues/806`) (0%) - Disallow import of modules using absolute paths ([import/no-absolute-path](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-absolute-path.md)) [#​806](`https://github.com/standard/standard/issues/806`) (0%) - Disallow Webpack loader syntax in imports ([import/no-webpack-loader-syntax](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-webpack-loader-syntax.md)) [#​806](`https://github.com/standard/standard/issues/806`) (0%) - Disallow comparing against -0 ([no-compare-neg-zero](http://eslint.org/docs/rules/no-compare-neg-zero)) [#​812](`https://github.com/standard/standard/issues/812`) (0%) ##### Changed rules - Relax rule: allow using `...rest` to omit properties from an object ([no-unused-vars](http://eslint.org/docs/rules/no-unused-vars)) [#​800](`https://github.com/standard/standard/issues/800`) - This is a common and useful pattern in React/JSX apps! - Relax rule: allow Flow `import type` statements ([import/no-duplicates](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-duplicates.md)) [#​599](`https://github.com/standard/standard/issues/599`) - These are no longer considered to be "duplicate imports" - Relax rule: Treat `process.exit()` the same as `throw` in code path analysis ([node/process-exit-as-throw](https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/process-exit-as-throw.md)) [#​699](`https://github.com/standard/standard/issues/699`) - Makes certain other rules work better and give fewer false positives - Relax rule: allow Unnecessary Labels ([no-extra-label](http://eslint.org/docs/rules/no-extra-label)) - Redundant, since "no-labels" is already enabled, which is more restrictive --- ### [`v10.0.1`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​1001---2017-04-06) - Internal changes (incremented dependency versions) --- ### [`v10.0.2`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​1002---2017-04-14) ##### Changed rules - Relax rule: Disallow import of modules using absolute paths ([import/no-absolute-path](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-absolute-path.md)) [#​861](`https://github.com/standard/standard/issues/861`) - This rule was responsible for up to 25% of the running time of `standard`, so we are disabling it until its performance improves. --- ### [`v10.0.3`](https://github.com/standard/standard/blob/master/CHANGELOG.md#​1003---2017-08-06) - Internal changes (incremented dependency versions) ---
Commits #### v10.0.3 - [`10ebdaa`](https://github.com/standard/standard/commit/10ebdaa0062a2cbe4d2289665a0e7bf9f5e36bda) What about Web Workers? - [`88ee913`](https://github.com/standard/standard/commit/88ee91361340c0454b473960e6ff27ec41446415) Can I check code inside of Markdown or HTML files? - [`aabdc68`](https://github.com/standard/standard/commit/aabdc6828ce9b46d1da5ef1b2797a49565ea1f04) Is there a Git pre-commit hook? - [`e1a4a9d`](https://github.com/standard/standard/commit/e1a4a9d0cb2f56394e7be248ac8480a61dda2dcf) How do I make the output all colorful and pretty? - [`286e3f8`](https://github.com/standard/standard/commit/286e3f8b4d8a81384f651663d3619121084588ff) Fix links to text editor plugins - [`37baeac`](https://github.com/standard/standard/commit/37baeac59660e192c04451c2ef6784bda4decb33) Merge pull request #​877 from termosa/patch-1 - [`7938cfc`](https://github.com/standard/standard/commit/7938cfc217d09aa26ace158dc188e87293accb04) Fix 'README-zhcn.md' Wrong translation - [`ffc925a`](https://github.com/standard/standard/commit/ffc925a79976ae7fbc080fcbe23245e2398c4dc6) `standard.lintText(text, [opts], callback)` - [`fa9ef4c`](https://github.com/standard/standard/commit/fa9ef4c116e6e58c7f3ff6fd65e37cceebf05886) `results = standard.lintTextSync(text, [opts])` - [`0f5ff79`](https://github.com/standard/standard/commit/0f5ff79dd464b36692b7d2a89bf7b7554556ff8c) `standard.lintFiles(files, [opts], callback)` - [`82d6aaa`](https://github.com/standard/standard/commit/82d6aaa1dfc24db6171bb819046c713626487616) How do I contribute to standard? - [`4563c99`](https://github.com/standard/standard/commit/4563c9976211cf597f68e14d7a527fc8869916d7) Test link - [`5bbb0a6`](https://github.com/standard/standard/commit/5bbb0a6f41621618017b38bea50b6c28a3e9cb50) Fix - [`0553409`](https://github.com/standard/standard/commit/0553409350cd0f08b7a77936612b3032770020e8) Fix header link - [`b4aa24c`](https://github.com/standard/standard/commit/b4aa24cd333aef1ad9e14567a10a27a2a5ddf522) Fix markdown syntax - [`da50be4`](https://github.com/standard/standard/commit/da50be41a4c785960bf4986a63f25c049eab51f3) Create RULES-kokr.md - [`535f8f3`](https://github.com/standard/standard/commit/535f8f3b08d58f27f26d33cccee70695cadeffa7) Fix readme - [`9004e28`](https://github.com/standard/standard/commit/9004e28308688a840840ce36a4541472f64ce18e) JavaScript Standard Style - [`805610a`](https://github.com/standard/standard/commit/805610a5cfb95e9800940a96b77dca8d43eabe36) Translate RULES-kokr - [`e154cbf`](https://github.com/standard/standard/commit/e154cbf5014865ff9cddd0cc4b84585c89eacf37) Fix rule link - [`ecd1a79`](https://github.com/standard/standard/commit/ecd1a79a40564c3ba00953c7135117c398bd47f7) Fix docs link - [`e0ab338`](https://github.com/standard/standard/commit/e0ab338955896368b6f1ca4e115b853f9933f477) Merge pull request #​1 from feross/master - [`bc74491`](https://github.com/standard/standard/commit/bc74491461e9fd1d81fd04407becacd80c6e95e3) Merge branch 'master' into translation-kr - [`5e0ddb0`](https://github.com/standard/standard/commit/5e0ddb09a1557d4c9c86c26a69b2eb48675c85ee) Add korean link in all docs files - [`d086ec0`](https://github.com/standard/standard/commit/d086ec096348e6b02eca39c773f0ace677411730) add alternative atom linter plugin. - [`b2557b5`](https://github.com/standard/standard/commit/b2557b50c74990f3a0bbf9bf6c211fb9190cea29) Neo4j is using standard - [`5eb3eac`](https://github.com/standard/standard/commit/5eb3eac7544c3a480da8dcd777f347bc46842237) Merge pull request #​894 from pe4cey/add-neo4j-logo - [`007a4aa`](https://github.com/standard/standard/commit/007a4aa12918e5b3b4152a905966a6974ebf023e) fix minor typo - [`7e46c72`](https://github.com/standard/standard/commit/7e46c72af71a512a2a7071581dc5fe56bca944a5) Merge pull request #​897 from AlexxNica/patch-1 - [`5518006`](https://github.com/standard/standard/commit/55180064f1c55c869c978ac79f48a06c0e2f593e) Merge pull request #​886 from gustavnikolaj/readme-standard-engine-linter - [`fa22de5`](https://github.com/standard/standard/commit/fa22de5289e875e1d388427781ec66a4ff151e26) update link - [`5476220`](https://github.com/standard/standard/commit/5476220d76d2bd6aacdc5cb91007d73078a12220) Update README-zhcn.md - [`05595b5`](https://github.com/standard/standard/commit/05595b5929d0300e87fe277555ba9b013844592a) Merge pull request #​912 from yyjazsf/patch-1 - [`01e3675`](https://github.com/standard/standard/commit/01e3675f596e583a287e6fe6d3f5156a82feace4) readme: Add TypeScript instructions - [`90e99bf`](https://github.com/standard/standard/commit/90e99bfc89a8cdabe7570e6f6537daa30b0dcabc) Merge pull request #​928 from feross/readme-typescript - [`45ef32e`](https://github.com/standard/standard/commit/45ef32eca065b30c52199fea38621e5ff56c1bc0) losslessly compress logos - [`ba78616`](https://github.com/standard/standard/commit/ba78616e3c7aa0c34139fa5685645e558e112190) Fix JavaScript typo - [`d54c031`](https://github.com/standard/standard/commit/d54c031a597c8c05b7983cf455d1de54918c8ac2) Fix JavaScript typo - [`fff43d3`](https://github.com/standard/standard/commit/fff43d355892c140cbb97bc8fa11e3458e90da84) Fix JavaScript typo - [`27dc376`](https://github.com/standard/standard/commit/27dc376b6184526427f2cd6489f18bf35700f49f) Fix JavaScript typo - [`d2177f0`](https://github.com/standard/standard/commit/d2177f0e02779cffa9e96a211858500fe658ebe2) Merge pull request #​930 from imrobinized/imrobinized-patch-1 - [`07b5668`](https://github.com/standard/standard/commit/07b5668a55df2dfbdef39d5cf15619669142bca1) Merge pull request #​878 from didilinkin/master - [`0404f51`](https://github.com/standard/standard/commit/0404f5132ff46a9dfddc03d3dc87cb9f1529ffbb) Merge pull request #​926 from Aladdin-ADD/patch-2 - [`6448e2d`](https://github.com/standard/standard/commit/6448e2da18f039e5652ee372337a4c9631952e21) Added README and RULES tranlated files - [`60e0c82`](https://github.com/standard/standard/commit/60e0c82c622ff8d6f114cdb0b1599f9b8b29a9cb) Added link to Italian translation - [`54e5b95`](https://github.com/standard/standard/commit/54e5b9500e6dc8619fcf86f453b1ba040bc38c3f) Update README.md with corrent repo - [`1d35e6d`](https://github.com/standard/standard/commit/1d35e6de1e83cfe98dd19df50d7fd4deca5ef5c3) Fix typo - [`6dd2c05`](https://github.com/standard/standard/commit/6dd2c056e96b40d8a69df110062f5b2473d74eba) Merge pull request #​939 from anteriovieira/patch-1 - [`94b4044`](https://github.com/standard/standard/commit/94b404422db4903e467f433f1a7d141ae1444063) rentograph is using standard - [`878ea7b`](https://github.com/standard/standard/commit/878ea7b58f73c0052ddc99383cb3b261fc2fafd2) Merge pull request #​945 from rentograph/add-rentograph-logo - [`034fac7`](https://github.com/standard/standard/commit/034fac7ef67f7baba16a1f691e87a0c79dadcb97) Merge pull request #​936 from CafeLungo/patch-1 - [`37932eb`](https://github.com/standard/standard/commit/37932eb9fc7daaa2753f00592632c81a2e4e65dc) compress logos - [`e7c5e83`](https://github.com/standard/standard/commit/e7c5e836613a3ec4ea264fd60f3ab55923221f82) feross/standard -> standard/standard - [`65a845a`](https://github.com/standard/standard/commit/65a845ac6ab0e1913f514f9bc189b1e98cf20fe1) Merge pull request #​934 from ematipico/feature/ItalianTranslation - [`abb6c97`](https://github.com/standard/standard/commit/abb6c975d31cdf413fcbebbaea2d0ca5e11a288e) Merge pull request #​952 from standard/repo-url - [`6bba965`](https://github.com/standard/standard/commit/6bba965b216f6898460885ed77b9cea65383e0d7) add consistent translation links to every page - [`3895bc6`](https://github.com/standard/standard/commit/3895bc6f6a05e1ac03b51c5dce802a31f4a253f5) move english readme/rules to docs/ folder - [`6d59566`](https://github.com/standard/standard/commit/6d59566cfc898dc895be779ac468ccd6412e5bef) Merge pull request #​953 from standard/translations - [`34490f7`](https://github.com/standard/standard/commit/34490f7240242d44a26a4ebe07a9abf210670499) Merge branch 'translation-kr' of https://github.com/devjin0617/standard into devjin0617-translation-kr - [`e79a692`](https://github.com/standard/standard/commit/e79a6920ad65152e003451ebd4b10263617e799e) Merge branch 'devjin0617-translation-kr' - [`2fa8b0f`](https://github.com/standard/standard/commit/2fa8b0f4f93898f56be0e052948028c4aca5da17) change more feross/standard -> standard/standard - [`8cc2285`](https://github.com/standard/standard/commit/8cc2285fa954e9e74b2bffbae53786c3ba69cb2d) Add a security policy - [`9770303`](https://github.com/standard/standard/commit/97703038334a80694c3bd5198014879bc9dbcb38) Merge pull request #​954 from standard/security - [`f00b169`](https://github.com/standard/standard/commit/f00b169c74a1f8e3052433b9f7b53d05ca142826) more feross/standard -> standard/standard - [`873bc9b`](https://github.com/standard/standard/commit/873bc9b117c8f9fbb615f6b2db3a741d019546de) Adding valid example for no-unsafe-negation - [`ac9e09e`](https://github.com/standard/standard/commit/ac9e09e007c12254bb1f163c38ba85dd3f929dd4) Merge pull request #​961 from igorsantos07/patch-1 - [`4a6e0d0`](https://github.com/standard/standard/commit/4a6e0d0bd4e8548dbda1bbf8ab0d9d201dbc5e5d) Update dependecy of eslint-config-standard-jsx - [`cfb84fe`](https://github.com/standard/standard/commit/cfb84fedbff8f80ace02d9ab692db6b7c815105f) Remove tilde to lock down eslint-config-standard-jsx version - [`d22676e`](https://github.com/standard/standard/commit/d22676e6cee35965d9b9231cd9e6c93588cacd09) Merge pull request #​963 from daper/patch-1 - [`82a0d5c`](https://github.com/standard/standard/commit/82a0d5c1361fe1c294b58626a3c644e682dc5e29) changelog - [`91e80a1`](https://github.com/standard/standard/commit/91e80a1feba31bb1c7b1ab57283c4e3cd93d56ab) 10.0.3

This PR has been generated by Renovate Bot.