Updates the requirements on standard to permit the latest version.
Changelog
*Sourced from [standard's changelog](https://github.com/standard/standard/blob/master/CHANGELOG.md).*
> ## 13.0.0 - 2019-07-10
>
> Welcome to the latest version of `standard`!
>
> As with every new major release, there are lots of new rules in 13.0.0 designed
> to help catch bugs and make programmer intent more explicit.
>
> `standard` is more popular than ever – **640,000 downloads per month!** It's
> even more popular – **3,000,000 downloads per month** – if you include the
> [ESLint configuration](https://www.npmjs.com/package/eslint-config-standard)
> that we also publish (for advanced users).
>
> When you upgrade, consider running `standard --fix` to automatically format your code to match the newly added rules.
>
> ❤️ If you enjoy StandardJS and want to support future releases, check out Feross's [GitHub Sponsors page](https://github.com/users/feross/sponsorship). GitHub is matching donations, so your dollars go twice as far! 🚀
>
> ### New features
>
> - Update `eslint` from `~5.16.0` to `~6.0.1`
>
> - BREAKING: Node.js 6 is no longer supported
> - Node.js 6 is EOL and will no longer be receiving security updates. As a result, the eslint team has decided to drop support for it.
> - To prevent breaking CI for projects which still support Node 6, `standard` silently passes when run by an unsupported version of Node.
>
> - **For `eslint-config-standard` users only:** Plugins are no longer affected by `eslint`'s location
> - Previously, ESLint loaded plugins relative to the location of the ESLint package itself. As a result, we suggested that users with global ESLint installations should also install plugins globally, and users with local ESLint installations should install plugins locally.
> - With ESLint v6, plugins should always be installed locally, even if ESLint was installed globally. More precisely, ESLint v6 resolves plugins relative to the end user’s project by default, and always resolves shareable configs and parsers relative to the location of the config file that imports them.
> - See [migrating to ESLint 6.0.0 for more information](https://eslint.org/docs/user-guide/migrating-to-6.0.0#-plugins-and-shareable-configs-are-no-longer-affected-by-eslints-location).
>
> - The documentation is now available in Japanese 🇯🇵!
> - Thanks to [@Munieru](https://github.com/munierujp) for the excellent work!
> - Other community contributed translations exist in Spanish, French, Italian, Korean, Portuguese, Simplified Chinese, and Taiwanese Mandarin.
> - More translations are always welcome!
>
> - Update `eslint-plugin-promise` from `~4.0.0` to `~4.2.1`
>
> - Update `eslint-plugin-node` from `~7.0.1` to `~9.1.0`
>
> ### New rules
>
> *(Estimated % of affected standard users, based on test suite in parens)*
>
> - Disallow spaces inside of array brackets ([array-bracket-spacing](https://eslint.org/docs/rules/array-bracket-spacing)) [#1203](https://github-redirect.dependabot.com/standard/standard/issues/1203) [eslint-config-standard/[#131](https://github-redirect.dependabot.com/standard/standard/issues/131)](https://github-redirect.dependabot.com/standard/eslint-config-standard/pull/131) (14%)
> - Require `const` instead of `let` if variable is never reassigned ([prefer-const](https://eslint.org/docs/rules/prefer-const)) [#523](https://github-redirect.dependabot.com/standard/standard/issues/523) [eslint-config-standard/[#133](https://github-redirect.dependabot.com/standard/standard/issues/133)](https://github-redirect.dependabot.com/standard/eslint-config-standard/pull/133) (14%)
> - Disallow quotes around object literal property names that are not strictly required ([quote-props](https://eslint.org/docs/rules/quote-props)) [#791](https://github-redirect.dependabot.com/standard/standard/issues/791) (4%)
> - Disallow use of Object.prototypes builtins directly ([no-prototype-builtins](https://eslint.org/docs/rules/no-prototype-builtins)) [#1310](https://github-redirect.dependabot.com/standard/standard/issues/1310) (3%)
> - Require an empty line between class members ([lines-between-class-members](https://eslint.org/docs/rules/lines-between-class-members)) [#438](https://github-redirect.dependabot.com/standard/standard/issues/438) (1%)
> - Disallow using an async function as a Promise executor ([no-async-promise-executor](https://eslint.org/docs/rules/no-async-promise-executor)) [#1309](https://github-redirect.dependabot.com/standard/standard/issues/1309) (1%)
> - Disallow spaces inside of computed properties ([computed-property-spacing](https://eslint.org/docs/rules/computed-property-spacing)) [#1315](https://github-redirect.dependabot.com/standard/standard/issues/1315) [eslint-config-standard/[#131](https://github-redirect.dependabot.com/standard/standard/issues/131)](https://github-redirect.dependabot.com/standard/eslint-config-standard/pull/131) (1%)
> - Disallow unnecessary catch clauses ([no-useless-catch](https://eslint.org/docs/rules/no-useless-catch)) [#1312](https://github-redirect.dependabot.com/standard/standard/issues/1312) (0%)
> ... (truncated)
Commits
- [`9c505a9`](https://github.com/standard/standard/commit/9c505a9c5a5762479d076cb5f7a400e12d0f61a4) 13.0.0
- [`7f3dd5d`](https://github.com/standard/standard/commit/7f3dd5db2729479a59b16f3af8ea17f19e9f7246) eslint-config-standard-jsx@7.0.0
- [`8cfb0ee`](https://github.com/standard/standard/commit/8cfb0eec345f906de67df2d5727d9911182aae50) eslint-config-standard@13.0.0
- [`e235cb5`](https://github.com/standard/standard/commit/e235cb5096a91e859a2c1b019bfedfae6c78daa9) changelog 13.0.0
- [`f125f0c`](https://github.com/standard/standard/commit/f125f0cacd5e040547dddacb29299693241a2c37) add link to security disclosure policy
- [`bd44694`](https://github.com/standard/standard/commit/bd44694ae5b63a758da4fdf5e113d7431dea2ae1) add nodejs logo; change logos to 4 per row
- [`f7f98bf`](https://github.com/standard/standard/commit/f7f98bfd64a2008a94f638c82cbd9d7b4e2c50ee) Update CHANGELOG.md
- [`5e6315c`](https://github.com/standard/standard/commit/5e6315c9534f8db29a0851d222afd9f4bcd5ca25) remove badge
- [`e3862be`](https://github.com/standard/standard/commit/e3862be6efe71319cf6dae7904d989caca90ae4b) Update AUTHORS.md
- [`f796995`](https://github.com/standard/standard/commit/f7969957659123667e95b8d1bec772ad6c4560b8) 13.0.0-0
- Additional commits viewable in [compare view](https://github.com/standard/standard/compare/v12.0.1...v13.0.0)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.
You can always request more updates by clicking Bump now in your Dependabot dashboard.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it). To ignore the version in this PR you can just close it
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Updates the requirements on standard to permit the latest version.
Changelog
*Sourced from [standard's changelog](https://github.com/standard/standard/blob/master/CHANGELOG.md).* > ## 13.0.0 - 2019-07-10 > > Welcome to the latest version of `standard`! > > As with every new major release, there are lots of new rules in 13.0.0 designed > to help catch bugs and make programmer intent more explicit. > > `standard` is more popular than ever – **640,000 downloads per month!** It's > even more popular – **3,000,000 downloads per month** – if you include the > [ESLint configuration](https://www.npmjs.com/package/eslint-config-standard) > that we also publish (for advanced users). > > When you upgrade, consider running `standard --fix` to automatically format your code to match the newly added rules. > > ❤️ If you enjoy StandardJS and want to support future releases, check out Feross's [GitHub Sponsors page](https://github.com/users/feross/sponsorship). GitHub is matching donations, so your dollars go twice as far! 🚀 > > ### New features > > - Update `eslint` from `~5.16.0` to `~6.0.1` > > - BREAKING: Node.js 6 is no longer supported > - Node.js 6 is EOL and will no longer be receiving security updates. As a result, the eslint team has decided to drop support for it. > - To prevent breaking CI for projects which still support Node 6, `standard` silently passes when run by an unsupported version of Node. > > - **For `eslint-config-standard` users only:** Plugins are no longer affected by `eslint`'s location > - Previously, ESLint loaded plugins relative to the location of the ESLint package itself. As a result, we suggested that users with global ESLint installations should also install plugins globally, and users with local ESLint installations should install plugins locally. > - With ESLint v6, plugins should always be installed locally, even if ESLint was installed globally. More precisely, ESLint v6 resolves plugins relative to the end user’s project by default, and always resolves shareable configs and parsers relative to the location of the config file that imports them. > - See [migrating to ESLint 6.0.0 for more information](https://eslint.org/docs/user-guide/migrating-to-6.0.0#-plugins-and-shareable-configs-are-no-longer-affected-by-eslints-location). > > - The documentation is now available in Japanese 🇯🇵! > - Thanks to [@Munieru](https://github.com/munierujp) for the excellent work! > - Other community contributed translations exist in Spanish, French, Italian, Korean, Portuguese, Simplified Chinese, and Taiwanese Mandarin. > - More translations are always welcome! > > - Update `eslint-plugin-promise` from `~4.0.0` to `~4.2.1` > > - Update `eslint-plugin-node` from `~7.0.1` to `~9.1.0` > > ### New rules > > *(Estimated % of affected standard users, based on test suite in parens)* > > - Disallow spaces inside of array brackets ([array-bracket-spacing](https://eslint.org/docs/rules/array-bracket-spacing)) [#1203](https://github-redirect.dependabot.com/standard/standard/issues/1203) [eslint-config-standard/[#131](https://github-redirect.dependabot.com/standard/standard/issues/131)](https://github-redirect.dependabot.com/standard/eslint-config-standard/pull/131) (14%) > - Require `const` instead of `let` if variable is never reassigned ([prefer-const](https://eslint.org/docs/rules/prefer-const)) [#523](https://github-redirect.dependabot.com/standard/standard/issues/523) [eslint-config-standard/[#133](https://github-redirect.dependabot.com/standard/standard/issues/133)](https://github-redirect.dependabot.com/standard/eslint-config-standard/pull/133) (14%) > - Disallow quotes around object literal property names that are not strictly required ([quote-props](https://eslint.org/docs/rules/quote-props)) [#791](https://github-redirect.dependabot.com/standard/standard/issues/791) (4%) > - Disallow use of Object.prototypes builtins directly ([no-prototype-builtins](https://eslint.org/docs/rules/no-prototype-builtins)) [#1310](https://github-redirect.dependabot.com/standard/standard/issues/1310) (3%) > - Require an empty line between class members ([lines-between-class-members](https://eslint.org/docs/rules/lines-between-class-members)) [#438](https://github-redirect.dependabot.com/standard/standard/issues/438) (1%) > - Disallow using an async function as a Promise executor ([no-async-promise-executor](https://eslint.org/docs/rules/no-async-promise-executor)) [#1309](https://github-redirect.dependabot.com/standard/standard/issues/1309) (1%) > - Disallow spaces inside of computed properties ([computed-property-spacing](https://eslint.org/docs/rules/computed-property-spacing)) [#1315](https://github-redirect.dependabot.com/standard/standard/issues/1315) [eslint-config-standard/[#131](https://github-redirect.dependabot.com/standard/standard/issues/131)](https://github-redirect.dependabot.com/standard/eslint-config-standard/pull/131) (1%) > - Disallow unnecessary catch clauses ([no-useless-catch](https://eslint.org/docs/rules/no-useless-catch)) [#1312](https://github-redirect.dependabot.com/standard/standard/issues/1312) (0%) > ... (truncated)Commits
- [`9c505a9`](https://github.com/standard/standard/commit/9c505a9c5a5762479d076cb5f7a400e12d0f61a4) 13.0.0 - [`7f3dd5d`](https://github.com/standard/standard/commit/7f3dd5db2729479a59b16f3af8ea17f19e9f7246) eslint-config-standard-jsx@7.0.0 - [`8cfb0ee`](https://github.com/standard/standard/commit/8cfb0eec345f906de67df2d5727d9911182aae50) eslint-config-standard@13.0.0 - [`e235cb5`](https://github.com/standard/standard/commit/e235cb5096a91e859a2c1b019bfedfae6c78daa9) changelog 13.0.0 - [`f125f0c`](https://github.com/standard/standard/commit/f125f0cacd5e040547dddacb29299693241a2c37) add link to security disclosure policy - [`bd44694`](https://github.com/standard/standard/commit/bd44694ae5b63a758da4fdf5e113d7431dea2ae1) add nodejs logo; change logos to 4 per row - [`f7f98bf`](https://github.com/standard/standard/commit/f7f98bfd64a2008a94f638c82cbd9d7b4e2c50ee) Update CHANGELOG.md - [`5e6315c`](https://github.com/standard/standard/commit/5e6315c9534f8db29a0851d222afd9f4bcd5ca25) remove badge - [`e3862be`](https://github.com/standard/standard/commit/e3862be6efe71319cf6dae7904d989caca90ae4b) Update AUTHORS.md - [`f796995`](https://github.com/standard/standard/commit/f7969957659123667e95b8d1bec772ad6c4560b8) 13.0.0-0 - Additional commits viewable in [compare view](https://github.com/standard/standard/compare/v12.0.1...v13.0.0)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.
You can always request more updates by clicking
Bump now
in your Dependabot dashboard.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it). To ignore the version in this PR you can just close it - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.