matthewmueller / x-ray

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

Update dependency standard to v17 #386

Open renovate[bot] opened 2 years ago

renovate[bot] commented 2 years ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
standard (source) 6.0.8 -> 17.1.0 age adoption passing confidence

Release Notes

standard/standard (standard) ### [`v17.1.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1710---2023-05-29) [Compare Source](https://togithub.com/standard/standard/compare/v17.0.0...v17.1.0) - Update [`eslint-config-standard`](https://togithub.com/standard/eslint-config-standard) from `17.0.0` to `17.1.0` ### [`v17.0.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1700---2022-04-20) [Compare Source](https://togithub.com/standard/standard/compare/v16.0.4...v17.0.0) We're super excited to announce `standard` 17! This major release fully focuses on getting in sync with the wider ESLint ecosystem and doesn't in itself introduce any new rules or features. When you upgrade, consider running `standard --fix` to automatically format your code to match the current set of rules. This is the first release by two of our `standard` co-maintainers [@​Divlo](https://togithub.com/Divlo) and [@​voxpelli](https://togithub.com/voxpelli). Buy them a cake if you run into them, thanks for getting this release out! ##### Major changes - `eslint-config-node` has been replaced with the up to date fork `eslint-config-n`. If you have used comments like `// eslint-disable-line node/no-deprecated-api` you now have to reference the `n/` rules instead. - [`object-shorthand` rule](https://togithub.com/standard/eslint-config-standard/pull/166) (as warning) - Use of ESLint 8, which allows for support for all of the latest syntax that ESLint 8 includes, such as top level `await` [#​1548](https://togithub.com/standard/standard/issues/1548) [#​1775](https://togithub.com/standard/standard/issues/1775) - `--verbose` by default ##### Changed features - Update `eslint` from `~7.18.0` to `^8.13.0` - Update `eslint-config-standard` from `16.0.3` to `17.0.0` to adapt to ESLint 8 - Update `eslint-config-standard-jsx` from `10.0.0` to `^11.0.0` to adapt to ESLint 8 - Update `standard-engine` from `^14` to `^15.0.0` to adapt to ESLint 8, see [its `CHANGELOG`](https://togithub.com/standard/standard-engine/blob/master/CHANGELOG.md#1500-0-2021-11-30) - Move from `eslint-plugin-node@~11.1.0` to `eslint-plugin-n@^15.1.0` to adapt to ESLint 8 - Update `eslint-plugin-import` from `~2.24.2` to `^2.26.0` - Update `eslint-plugin-promise` from `~5.1.0` to `^6.0.0` - Update `eslint-plugin-react` from `~7.25.1` to `^7.28.0` ### [`v16.0.4`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1604---2021-10-03) [Compare Source](https://togithub.com/standard/standard/compare/v16.0.3...v16.0.4) - Update `eslint` from `~7.13.1` to `~7.18.0` - Update `eslint-config-standard` from `16.0.2` to `16.0.3` - Update `eslint-plugin-import` from `~2.22.1` to `~2.24.2` - Update `eslint-plugin-promise` from `~4.2.1` to `~5.1.0` - Update `eslint-plugin-react` from `~7.21.5` to `~7.25.1` ### [`v16.0.3`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1603---2020-11-17) [Compare Source](https://togithub.com/standard/standard/compare/v16.0.2...v16.0.3) - Update `eslint` from `~7.12.1` to `~7.13.0` - Relax rule: Enforce default parameters to be last [#​1414](https://togithub.com/standard/standard/issues/1414) ### [`v16.0.2`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1602---2020-11-11) [Compare Source](https://togithub.com/standard/standard/compare/v16.0.1...v16.0.2) - Allow `standard` to run on Node 11, even though it's not officially supported [#​1597](https://togithub.com/standard/standard/pull/1597) ### [`v16.0.1`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1601---2020-10-30) [Compare Source](https://togithub.com/standard/standard/compare/v16.0.0...v16.0.1) - Introduce "warning" system for disruptive rules (read more below) - Change rule to a "warning": Require let or const instead of var ([no-var](https://eslint.org/docs/rules/no-var)) [#​633](https://togithub.com/standard/standard/issues/633) `standard` treats all rule violations as errors, which means that `standard` will exit with a non-zero (error) exit code. However, we may occasionally release a new major version of `standard` which changes a rule that affects the majority of `standard` users (for example, transitioning from `var` to `let`/`const`). We do this only when we think the advantage is worth the cost and only when the rule is [auto-fixable](https://standardjs.com/#is-there-an-automatic-formatter). In these situations, we have a "transition period" where the rule change is only a "warning". Warnings don't cause `standard` to return a non-zero (error) exit code. However, a warning message will still print to the console. During the transition period, `using standard --fix` will update your code so that it's ready for the next major version. The slow and careful approach is what we strive for with `standard`. We're generally extremely conservative in enforcing the usage of new language features. We want using `standard` to be light and fun and so we're careful about making changes that may get in your way. As always, you can [disable a rule](https://standardjs.com/#how-do-i-disable-a-rule) at any time, if necessary. ### [`v16.0.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1600---2020-10-28) [Compare Source](https://togithub.com/standard/standard/compare/v15.0.1...v16.0.0) We're super excited to announce `standard` 16! As with every new major release, there are lots of new rules in 16.0.0 designed to help catch bugs and make programmer intent more explicit. This release brings better performance, tons of bug fixes, improved JSX, React ⚛️, and Next.js support! 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, please [support Feross](https://togithub.com/users/feross/sponsorship)! ##### New features - 🏎 Better performance: the filesystem doesn't need to be traversed multiple times! [#​1023](https://togithub.com/standard/standard/issues/1023) - Massive improvements (on the order of minutes!) for projects with huge folders which are are ignored with `.gitignore` - 🌟 Support the `.gitignore` ignore syntax from the command line [#​1117](https://togithub.com/standard/standard/issues/1117) - In older versions, the command `standard src` would not lint the `src/` folder - Instead, a glob pattern like `standard src/**/*.js` was required - This is now fixed! You can run `standard src` to lint the `src/` folder! - 🌟 Support relative paths from the command line in more situations (e.g. `standard ../src/*.js`) [#​1384](https://togithub.com/standard/standard/issues/1384) - 🌟 New `extensions` option for linting additional extensions besides `.js`, `.jsx`, `.mjs`, and `.cjs` - Can be configured with the `--ext` command line flag or in `package.json`: - Example: ```bash standard --ext .ts ``` ```json { "standard": { "extensions": [".ts"] } } ``` - 🌟 New cache directory location, respecting `XDG_CACHE_HOME` preference, with fallback to `~/.cache/standard` [standard-engine/#​214](https://togithub.com/standard/standard-engine/pull/214) ##### Changed features - Update `eslint` from `~7.11.0` to `~7.12.1` - Update `standard-engine` from `^12` to `^14` - Fix inaccurate `--help` command which indicates that `bundle.js` is automatically ignored when it is not anymore [standard-engine/#​224](https://togithub.com/standard/standard-engine/pull/224) - Remove `deglob` package and use built-in ESLint folder-traversal support - Paths with square brackets (e.g. `[` and `]`) are no longer skipped [#​1333](https://togithub.com/standard/standard/issues/1333) - This pattern is particularly common in Next.js apps, e.g. `blog/[slug].js` - You may notice new errors in these files since they were not being linted before - Better mono-repo support: Nested `node_modules/` folders are ignored by default [#​1182](https://togithub.com/standard/standard/issues/1182) - Remove `eslint-plugin-standard` [#​1316](https://togithub.com/standard/standard/issues/1316) - We migrated the remaining `no-callback-literal` rule into `eslint-plugin-node` ##### New rules *(Estimated % of affected standard users, based on test suite in parens)* - Require let or const instead of var ([no-var](https://eslint.org/docs/rules/no-var)) [#​633](https://togithub.com/standard/standard/issues/633) \[75%] \[automatic fixing reduces to 11%] - Enforce return statements in `Array` method callbacks ([array-callback-return](https://eslint.org/docs/rules/array-callback-return)) [#​859](https://togithub.com/standard/standard/issues/859) \[7%] - Disallow empty block statements ([no-empty](https://eslint.org/docs/rules/no-empty)) [#​796](https://togithub.com/standard/standard/issues/796) \[2%] - Enforce default parameters to be last ([default-param-last](https://eslint.org/docs/rules/default-param-last)) [#​1414](https://togithub.com/standard/standard/issues/1414) \[1%] - Disallow use of the `RegExp` constructor in favor of regular expression literals ([prefer-regex-literals](https://eslint.org/docs/rules/prefer-regex-literals)) [#​1413](https://togithub.com/standard/standard/issues/1413) \[1%] - Disallow spaces inside of computed keys of class methods, getters and setters ([computed-property-spacing](https://eslint.org/docs/rules/computed-property-spacing)) [#​1416](https://togithub.com/standard/standard/issues/1416) \[0%] - Disallow `case NaN`, `switch(NaN)`, `indexOf(NaN)`, and `lastIndexOf(NaN)` ([use-isnan](https://eslint.org/docs/rules/use-isnan)) [#​1429](https://togithub.com/standard/standard/issues/1429) \[0%] - Disallow assigning to imported bindings ([no-import-assign](https://eslint.org/docs/rules/no-import-assign)) [#​1412](https://togithub.com/standard/standard/issues/1412) \[0%] - Enforce getter/setter pairs in classes ([accessor-pairs](https://eslint.org/docs/rules/accessor-pairs)) [#​1415](https://togithub.com/standard/standard/issues/1415) \[0%] - Node: Disallow assignment to `exports` ([node/no-exports-assign](https://togithub.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-exports-assign.md)) [#​1400](https://togithub.com/standard/standard/issues/1400) \[0%] - React: Prevent usage of the return value of `ReactDOM.render` ([react/no-render-return-value](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-render-return-value.md)) [#​1568](https://togithub.com/standard/standard/issues/1568) \[1%] - React: Prevent usage of deprecated methods ([react/no-deprecated](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-deprecated.md)) [#​1572](https://togithub.com/standard/standard/issues/1572) \[1%] - React: Prevent direct mutation of `this.state` ([react/no-direct-mutation-state](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-direct-mutation-state.md)) [#​1571](https://togithub.com/standard/standard/issues/1571) \[0%] - React: Prevent usage of `findDOMNode` ([react/no-find-dom-node](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-find-dom-node.md)) [#​1570](https://togithub.com/standard/standard/issues/1570) \[0%] - React: Prevent usage of `isMounted` ([react/no-is-mounted](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-is-mounted.md)) [#​1569](https://togithub.com/standard/standard/issues/1569) \[0%] - React: Prevent using string refs ([react/no-string-refs](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-string-refs.md)) [#​1567](https://togithub.com/standard/standard/issues/1567) \[0%] - JSX: Prevent missing parentheses around multiline JSX ([react/jsx-wrap-multilines](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-wrap-multilines.md)) [#​710](https://togithub.com/standard/standard/issues/710) [#​1382](https://togithub.com/standard/standard/issues/1382) (0%) - JSX: Check if shorthand fragment syntax requires a key prop ([react/jsx-key](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-key.md)) [#​1575](https://togithub.com/standard/standard/issues/1575) \[0%] - JSX: Prevent passing of children as props ([react/no-children-prop](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-children-prop.md)) [#​1574](https://togithub.com/standard/standard/issues/1574) \[0%] - JSX: Prevent using children and dangerouslySetInnerHTML as props at the same time ([react/no-danger-with-children](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-danger-with-children.md)) [#​1573](https://togithub.com/standard/standard/issues/1573) \[0%] - JSX: Prevent invalid characters from appearing in markup ([react/no-unescaped-entities](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-unescaped-entities.md)) [#​1566](https://togithub.com/standard/standard/issues/1566) \[0%] - JSX: Enforce JSX value is returned in component render function ([react/require-render-return](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/require-render-return.md)) [#​1565](https://togithub.com/standard/standard/issues/1565) \[0%] - JSX: Prevent usage of unsafe `target='_blank'` on any component named `Link` ([react/jsx-no-target-blank](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-target-blank.md)) [#​1576](https://togithub.com/standard/standard/issues/1576) \[0%] ##### Changed rules - Relax rule: JSX: Consider the global scope when checking for defined Components [#​1115](https://togithub.com/standard/standard/issues/1115) - Relax rule: JSX: Remove conflicting indentation rule in `indent` [#​1499](https://togithub.com/standard/standard/issues/1499) ### [`v15.0.1`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1501---2020-10-27) [Compare Source](https://togithub.com/standard/standard/compare/v15.0.0...v15.0.1) - Relax rule: Remove conflicting JSX indenting with `indent` rule [eslint-config-standard/#​177](https://togithub.com/standard/eslint-config-standard/issues/177) ### [`v15.0.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1500---2020-10-21) [Compare Source](https://togithub.com/standard/standard/compare/v14.3.4...v15.0.0) We're super excited to announce `standard` 15! As with every new major release, there are lots of new rules in 15.0.0 designed to help catch bugs and make programmer intent more explicit. This release brings support for ES 2021, the latest version of the ECMAScript specification, as well as many quality-of-life improvements, including ESLint v7. 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://togithub.com/users/feross/sponsorship). ##### New features - Support ES 2021, the latest version of the ECMAScript specification, which includes support for [logical assignment operators](https://togithub.com/tc39/proposal-logical-assignment) and [numeric separators](https://togithub.com/tc39/proposal-numeric-separator) [#​1551](https://togithub.com/standard/standard/issues/1551) - Support ES 2020 features such as [optional chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining), the [nullish coalescing operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator), `export * as ns from 'source'`, and [`import.meta`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import.meta). - Support global variables from ES 2017 (`Atomics`, `SharedArrayBuffer`), ES 2020 (`BigInt`, `BigInt64Array`, `BigUint64Array`, `globalThis`), and ES 2021 (`FinalizationRegistry`, `WeakRef`). [#​1436](https://togithub.com/standard/standard/issues/1436) [#​1557](https://togithub.com/standard/standard/issues/1557) [eslint-config-standard/#​156](https://togithub.com/standard/eslint-config-standard/pull/156) - The documentation is now available in Indonesian 🇮🇩! [#​1544](https://togithub.com/standard/standard/pull/1544) - Thanks to [@​yoga1234](https://togithub.com/yoga1234) for the excellent work! - Other community contributed translations exist in Spanish, French, Italian, Japanese, Korean, Portuguese, Simplified Chinese, and Taiwanese Mandarin. - More translations are always welcome! ##### Changed features - BREAKING: Node.js 8 is no longer supported - Node.js 8 is EOL and will no longer be receiving security updates. - To prevent breaking CI for projects which still support Node 8, `standard` silently passes when run by an unsupported version of Node - Update `eslint` from `~6.8.0` to `~7.11.0` ##### New rules *(Estimated % of affected standard users, based on test suite in parens)* - Require indentation for values of ternary expressions ([indent](https://eslint.org/docs/rules/indent)) [#​927](https://togithub.com/standard/standard/issues/927) \[4%] - Enforce newlines between operands of ternary expressions if the expression spans multiple lines ([multiline-ternary](https://eslint.org/docs/rules/multiline-ternary)) [#​1558](https://togithub.com/standard/standard/issues/1558) \[3%] - Disallow loops with a body that allows only one iteration ([no-unreachable-loop](https://eslint.org/docs/rules/no-unreachable-loop)) [#​1556](https://togithub.com/standard/standard/issues/1556) \[0%] - Disallow useless backreferences in regular expressions ([no-useless-backreference](https://eslint.org/docs/rules/no-useless-backreference)) [#​1554](https://togithub.com/standard/standard/issues/1554) \[0%] - Enforce default clauses in switch statements to be last ([default-case-last](https://eslint.org/docs/rules/default-case-last)) [#​1553](https://togithub.com/standard/standard/issues/1553) \[0%] - Disallow Number Literals That Lose Precision ([no-loss-of-precision](https://eslint.org/docs/rules/no-loss-of-precision)) [#​1552](https://togithub.com/standard/standard/issues/1552) \[0%] ##### Changed rules - Relax rule: Allow function declarations in nested blocks [#​1406](https://togithub.com/standard/standard/issues/1406) - Relax rule: Removed redundant `no-negated-in-lhs` rule, already enforced by `no-unsafe-negation` [eslint-config-standard/#​160](https://togithub.com/standard/eslint-config-standard/pull/160) ### [`v14.3.4`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1434---2020-05-11) [Compare Source](https://togithub.com/standard/standard/compare/2a1d8d1d15d64ab0a5ce1fde84b0d5111e85adf5...v14.3.4) - Relax rule: `no-return-await` [#​1442](https://togithub.com/standard/standard/pull/1442) ### [`v14.3.3`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1433---2020-03-15) [Compare Source](https://togithub.com/standard/standard/compare/v14.3.2...2a1d8d1d15d64ab0a5ce1fde84b0d5111e85adf5) - Skip running on versions of Node.js older than 8.10.0. [#​1496](https://togithub.com/standard/standard/pull/1496) ### [`v14.3.2`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1432---2020-03-14) [Compare Source](https://togithub.com/standard/standard/compare/v14.3.1...v14.3.2) - Update `eslint` to `~6.8.0` ### [`v14.3.1`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1431---2019-09-17) [Compare Source](https://togithub.com/standard/standard/compare/v14.3.0...v14.3.1) - Skip running on versions of Node.js older than 8.6.0. [#​1418](https://togithub.com/standard/standard/pull/1418) ### [`v14.3.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1430---2019-09-14) [Compare Source](https://togithub.com/standard/standard/compare/v14.2.0...v14.3.0) - Update `eslint` to `~6.4.0` ### [`v14.2.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1420---2019-09-11) [Compare Source](https://togithub.com/standard/standard/compare/v14.1.0...v14.2.0) - Update `eslint` to `~6.3.0` - Update `eslint-plugin-node` to `~10.0.0` ### [`v14.1.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1410---2019-08-28) [Compare Source](https://togithub.com/standard/standard/compare/v14.0.2...v14.1.0) - Support ES 2020, the latest version of the ECMAScript specification, which includes support for Dynamic Imports and `BigInt`. [#​1378](https://togithub.com/standard/standard/issues/1378) - Security: Upgrade `eslint` to `6.2.2` to fix security issue ([blog post](https://eslint.org/blog/2019/08/eslint-v6.2.1-released)) ([security advisory](https://togithub.com/mysticatea/eslint-utils/security/advisories/GHSA-3gx7-xhv7-5mx3)) - Remove [`funding`](https://togithub.com/feross/funding). See [Recap of the `funding` experiment](https://feross.org/funding-experiment-recap) for thoughts and learnings. NOTE: If you use `standard` with the `--parser babel-eslint` option, please ensure that you update `babel-eslint` to `10.0.3` or later for compatibility with this version of `standard`. ### [`v14.0.2`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1402---2019-08-22) [Compare Source](https://togithub.com/standard/standard/compare/v14.0.1...v14.0.2) - Relax rule: Don't check indentation on template literal children (work around for ESLint bug) ([indent](https://eslint.org/docs/rules/indent)) [#​1385](https://togithub.com/standard/standard/issues/1385) ### [`v14.0.1`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1401---2019-08-22) [Compare Source](https://togithub.com/standard/standard/compare/v14.0.0...v14.0.1) - Relax rule (temporarily, to workaround a bug): Disallow missing parentheses around multiline JSX ([react/jsx-wrap-multilines](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-wrap-multilines.md)) [#​1382](https://togithub.com/standard/standard/issues/1382) ### [`v14.0.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1400---2019-08-19) [Compare Source](https://togithub.com/standard/standard/compare/v13.1.0...v14.0.0) We're super excited to announce `standard` 14! As with every new major release, there are lots of new rules in 14.0.0 designed to help catch bugs and make programmer intent more explicit. This release brings support for ES 2019, the latest version of the ECMAScript specification, as well as many quality-of-life improvements for users who use tagged template strings, JSX, and `.mjs` files for ES modules. When you upgrade, consider running `standard --fix` to automatically format your code to match the newly added rules. `standard` keeps growing! The latest stats show that `standard` and `eslint-standard-*` shareable configs are depended upon by **318,512 GitHub repositories** and **33,349 public npm packages**. Thanks for spreading the word! We now have a [Discord server](https://discord.gg/ZegqCBr). Come chat with the maintainers, ask questions, and get help from the community! ❤️ If you enjoy StandardJS and want to support future releases, check out Feross's [GitHub Sponsors page](https://togithub.com/users/feross/sponsorship). GitHub is matching donations, so your dollars go twice as far! 🚀 ##### New features - Support ES 2019, the latest version of the ECMAScript specification. [eslint-config-standard/e04e06](https://togithub.com/standard/eslint-config-standard/commit/e04e0615fdea44567bfb2fd1f868e3ab6751bda3) - Lint `*.mjs` and `*.cjs` files automatically by default [#​1009](https://togithub.com/standard/standard/issues/1009) - Ignore patterns from `.git/info/exclude` in addition to `.gitignore`. [#​1277](https://togithub.com/standard/standard/issues/1277) - Added [`funding`](https://togithub.com/feross/funding), an open source funding experiment. ##### Changed features - Remove `bundle.js` from the default list of ignored files [#​743](https://togithub.com/standard/standard/issues/743) ##### New rules *(Estimated % of affected standard users, based on test suite in parens)* - Require Dot Notation Whenever Possible ([dot-notation](https://eslint.org/docs/rules/dot-notation)) [#​1344](https://togithub.com/standard/standard/issues/1344) \[6%] - Require consistent line breaks inside braces ([object-curly-newline](https://eslint.org/docs/rules/object-curly-newline)) [#​782](https://togithub.com/standard/standard/issues/782) \[1%] - Disallow template literals when placeholders or tagged template features are not used. ([quotes](https://eslint.org/docs/rules/quotes)) [#​838](https://togithub.com/standard/standard/issues/838) [eslint-config-standard/#​151](https://togithub.com/standard/eslint-config-standard/pull/151) \[1%] - Disallow lexical declarations in case/default clauses ([no-case-declarations](https://eslint.org/docs/rules/no-case-declarations)) [#​1211](https://togithub.com/standard/standard/issues/1211) [eslint-config-standard/#​137](https://togithub.com/standard/eslint-config-standard/pull/137) \[1%] - Require the first JSX property to be placed on a new line if the JSX tag takes up multiple lines and there are multiple properties ([react/jsx-first-prop-new-line](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-first-prop-new-line.md)) [#​696](https://togithub.com/standard/standard/issues/696) \[1%] - Require linebreaks in curly braces in JSX attributes and expressions to be consistent ([react/jsx-curly-newline](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-curly-newline.md)) [#​1372](https://togithub.com/standard/standard/issues/1372) \[1%] - Require JSX attributes and logical expressions to be indented correctly ([react/jsx-indent](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-indent.md)) [#​1370](https://togithub.com/standard/standard/issues/1370) \[1%] - Require JSX event handler names to follow conventions ([react/jsx-handler-names](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-handler-names.md)) [#​1371](https://togithub.com/standard/standard/issues/1371) \[1%] - Disallow spaces inside of curly braces in JSX expressions in children ([react/jsx-curly-spacing](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-curly-spacing.md)) [#​1373](https://togithub.com/standard/standard/issues/1373) \[1%] - Require JSX closing bracket to be aligned with the opening tag ([react/jsx-closing-bracket-location](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-closing-bracket-location.md)) [#​1361](https://togithub.com/standard/standard/issues/1361) \[1%] - Disallow unnecessary curly braces in JSX props and children ([react/jsx-curly-brace-presence](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-curly-brace-presence.md)) [#​1366](https://togithub.com/standard/standard/issues/1366) \[1%] - Disallow missing `key` prop in JSX elements that likely require a `key` prop ([react/jsx-key](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-key.md)) [#​1369](https://togithub.com/standard/standard/issues/1369) \[1%] - Disallow import of modules using absolute paths ([import/no-absolute-path](https://togithub.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-absolute-path.md)) [#​861](https://togithub.com/standard/standard/issues/861) [#​1343](https://togithub.com/standard/standard/issues/1343) \[0%] - Require no spaces before JSX closing brackets ([react/jsx-tag-spacing](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-tag-spacing.md)) [#​1348](https://togithub.com/standard/standard/issues/1348) [eslint-config-standard-jsx/38](https://togithub.com/standard/eslint-config-standard-jsx/pull/38) \[0%] - Disallow multiple spaces between inline JSX props ([react/jsx-props-no-multi-spaces](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-props-no-multi-spaces.md)) [#​1363](https://togithub.com/standard/standard/issues/1363) \[0%] - Disallow accidental comments in JSX from being inserted as text nodes ([react/jsx-no-comment-textnodes](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-comment-textnodes.md)) [#​1368](https://togithub.com/standard/standard/issues/1368) \[0%] - Prevent usage of unsafe `target='_blank'` in JSX links ([react/jsx-no-target-blank](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-target-blank.md)) [#​1367](https://togithub.com/standard/standard/issues/1367) \[0%] - Require shorthand form for JSX fragments ([react/jsx-fragments](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-fragments.md)) [#​1364](https://togithub.com/standard/standard/issues/1364) \[0%] - Require PascalCase for user-defined JSX components ([react/jsx-pascal-case](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-pascal-case.md)) [#​1365](https://togithub.com/standard/standard/issues/1365) \[0%] - Require JSX closing tag to be aligned with the opening tag ([react/jsx-closing-tag-location](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-closing-tag-location.md)) [#​1358](https://togithub.com/standard/standard/issues/1358) \[0%] - Disallow missing parentheses around multiline JSX ([react/jsx-wrap-multilines](https://togithub.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-wrap-multilines.md)) [#​710](https://togithub.com/standard/standard/issues/710) \[0%] - Require pipeline operators to appear at the start of a line ([operator-linebreak](https://eslint.org/docs/rules/operator-linebreak)) [eslint-config-standard/#​121](https://togithub.com/standard/eslint-config-standard/pull/121) \[0%] - Disallow use of the void operator ([no-void](https://eslint.org/docs/rules/no-void)) [eslint-config-standard/#​135](https://togithub.com/standard/eslint-config-standard/pull/135) \[0%] ##### Changed rules - Relax rule: Don't require newlines between *single-line* member functions or class field declarations ([lines-between-class-members](https://eslint.org/docs/rules/lines-between-class-members)) [#​1347](https://togithub.com/standard/standard/issues/1347) - Relax rule: Don't check indentation on template literal children (work around for ESLint bug) ([indent](https://eslint.org/docs/rules/indent)) [#​1176](https://togithub.com/standard/standard/issues/1176) - Relax rule: Disallow labels that are variables names (because all labels are already disallowed) ([no-label-var](https://eslint.org/docs/rules/no-label-var)) [eslint-config-standard/#​132](https://togithub.com/standard/eslint-config-standard/pull/132) ### [`v13.1.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1310---2019-07-20) [Compare Source](https://togithub.com/standard/standard/compare/v13.0.2...v13.1.0) - Update `eslint` from `~6.0.1` to `~6.1.0` ### [`v13.0.2`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1302---2019-07-12) [Compare Source](https://togithub.com/standard/standard/compare/v13.0.1...v13.0.2) - Fix global installations of `standard` not finding dependencies due to ESLint v6 plugin resolution change [#​1327](https://togithub.com/standard/standard/issues/1327) [#​1328](https://togithub.com/standard/standard/issues/1328) [#​1329](https://togithub.com/standard/standard/issues/1329) ### [`v13.0.1`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1301---2019-07-11) [Compare Source](https://togithub.com/standard/standard/compare/v13.0.0...v13.0.1) ##### Changed rules - Relax rule: Only enforce `const` in destructuring when all variables are constant [#​1325](https://togithub.com/standard/standard/issues/1325) ### [`v13.0.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1300---2019-07-10) [Compare Source](https://togithub.com/standard/standard/compare/v12.0.1...v13.0.0) 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://togithub.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 [@​munierujp](https://togithub.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://togithub.com/standard/standard/issues/1203) [eslint-config-standard/#​131](https://togithub.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://togithub.com/standard/standard/issues/523) [eslint-config-standard/#​133](https://togithub.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://togithub.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://togithub.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://togithub.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://togithub.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://togithub.com/standard/standard/issues/1315) [eslint-config-standard/#​131](https://togithub.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://togithub.com/standard/standard/issues/1312) \[0%] - Disallow characters which are made with multiple code points in character class syntax ([no-misleading-character-class](https://eslint.org/docs/rules/no-misleading-character-class)) [#​1311](https://togithub.com/standard/standard/issues/1311) \[0%] ### [`v12.0.1`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1201---2018-08-29) [Compare Source](https://togithub.com/standard/standard/compare/v12.0.0...v12.0.1) - Since ESLint 5 no longer supports Node 4, `standard` silently passes when run in Node 4, which matches the current behavior for Node 0.10, 0.12, and all other unsupported versions of Node. ### [`v12.0.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1200---2018-08-28) [Compare Source](https://togithub.com/standard/standard/compare/v11.0.1...v12.0.0) New version of ESLint, new version of Standard! When you upgrade, consider running `standard --fix` to automatically format your code to match the newly added rules. ##### New features - Update `eslint` from `~4.19.0` to `~5.4.0`. - Support JSXFragment nodes (e.g. `<>`) - Lots of minor changes to rules to catch more edge cases! - The README is now available in French! (Thanks [@​charliegerard](https://togithub.com/charliegerard)!) - Other community contributed translations exist in Spanish, Italian, Korean, Portuguese, Simplified Chinese, and Taiwanese Mandarin. - More translations are welcome! ##### New rules *(Estimated % of affected standard users, based on test suite in parens)* - Require spacing inside of braces ([object-curly-spacing](https://eslint.org/docs/rules/object-curly-spacing)) [#​609](https://togithub.com/standard/standard/issues/609) [eslint-config-standard/#​35](https://togithub.com/standard/eslint-config-standard/issues/35) \[29%] - Disallow APIs that were deprecated in Node 10 ([no-deprecated-api](https://togithub.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-deprecated-api.md)) [#​1164](https://togithub.com/standard/standard/pull/1164) \[15%] - e.g. `assert.equal()`, `assert.deepEqual()` and `assert.notEqual()` were deprecated in Node 10. - Disallow self assignment of properties ([no-self-assign](https://eslint.org/docs/rules/no-self-assign)) [#​1186](https://togithub.com/standard/standard/issues/1186) \[0%] - Disallow use of an exported name as the locally imported name of a default export ([import/no-named-as-default](https://togithub.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-named-as-default.md)) [eslint-config-standard/#​98](https://togithub.com/standard/eslint-config-standard/pull/98) ##### Changed rules None. ### [`v11.0.1`](https://togithub.com/standard/standard/compare/v11.0.0...v11.0.1) [Compare Source](https://togithub.com/standard/standard/compare/v11.0.0...v11.0.1) ### [`v11.0.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1100---2018-02-18) [Compare Source](https://togithub.com/standard/standard/compare/v10.0.3...v11.0.0) This release has no new rules, but it does update to the latest version of `eslint`, version 4, which has some significant changes to existing rules. Most updates make the indentation rules more strict. Thankfully, most users will just need to run `standard --fix` to update code to be compliant. ##### New features - Update `eslint` from ~3.19.0 to ~4.18.0. - The `indent` rule is more strict. - The `padded-blocks` rule is more strict. - The `space-before-function-paren` rule is more strict. - The `no-multi-spaces` rule is more strict. - Minor improvements to: - `no-extra-parens`, - `no-unexpected-multiline`, - `no-regex-spaces`, and - `space-unary-ops` - Update `eslint-plugin-import` from `~2.2.0` to `~2.8.0` - Updated for eslint 4.0 compatibility. - Various small bug fixes included related to `import/*` rules. - Update `eslint-plugin-node` from `~4.2.2` to `~6.0.0` - The `no-deprecated-api` rule is updated with Node.js 8 support and improved Node 6 support. - Upodate `eslint-plugin-promise` from `~3.5.0` to `~3.6.0`. - Update `eslint-plugin-react` from `~6.10.0` to `~7.6.1` - Fix `jsx-indent` crash - Fix `jsx-indent` indentation calculation with nested JSX. - Fix `jsx-no-undef` will not check the global scope by default. - Fix `jsx-curly-spacing` newline with object literals bug. - Fix `jsx-curly-spacing` schema incompatibility with ESLint 4.2.0. - Fix alignment bug in `jsx-indent`. ##### Changed rules - Relax rule: Don't mark Rails Asset Pipeline comments (comments that start with `//=`) as errors. ([spaced-comment](https://eslint.org/docs/rules/spaced-comment)) [#​918](https://togithub.com/standard/standard/issues/918) 👏 Huge thanks to [@​Flet](https://togithub.com/Flet) for putting together most of this release! ### [`v10.0.3`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1003---2017-08-06) [Compare Source](https://togithub.com/standard/standard/compare/v10.0.2...v10.0.3) - Internal changes (incremented dependency versions) ### [`v10.0.2`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1002---2017-04-14) [Compare Source](https://togithub.com/standard/standard/compare/v10.0.1...v10.0.2) ##### Changed rules - Relax rule: Disallow import of modules using absolute paths ([import/no-absolute-path](https://togithub.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-absolute-path.md)) [#​861](https://togithub.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.1`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1001---2017-04-06) [Compare Source](https://togithub.com/standard/standard/compare/v10.0.0...v10.0.1) - Internal changes (incremented dependency versions) ### [`v10.0.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#1000---2017-04-04) [Compare Source](https://togithub.com/standard/standard/compare/v9.0.2...v10.0.0) **`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://togithub.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://togithub.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-deprecated-api.md)) [#​693](https://togithub.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://togithub.com/xjamundx/eslint-plugin-standard#rules-explanations)) [#​623](https://togithub.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://togithub.com/benmosher/eslint-plugin-import/blob/master/docs/rules/first.md)) [#​806](https://togithub.com/standard/standard/issues/806) \[1%] - Disallow unnecessary return await ([no-return-await](https://eslint.org/docs/rules/no-return-await)) [#​695](https://togithub.com/standard/standard/issues/695) \[0%] - Disallow comma-dangle in functions ([comma-dangle](https://eslint.org/docs/rules/comma-dangle)) [#​787](https://togithub.com/standard/standard/issues/787) \[0%] - Disallow repeated exports of names or defaults ([import/export](https://togithub.com/benmosher/eslint-plugin-import/blob/master/docs/rules/export.md)) [#​806](https://togithub.com/standard/standard/issues/806) \[0%] - Disallow import of modules using absolute paths ([import/no-absolute-path](https://togithub.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-absolute-path.md)) [#​806](https://togithub.com/standard/standard/issues/806) \[0%] - Disallow Webpack loader syntax in imports ([import/no-webpack-loader-syntax](https://togithub.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-webpack-loader-syntax.md)) [#​806](https://togithub.com/standard/standard/issues/806) \[0%] - Disallow comparing against -0 ([no-compare-neg-zero](https://eslint.org/docs/rules/no-compare-neg-zero)) [#​812](https://togithub.com/standard/standard/issues/812) \[0%] ##### Changed rules - Relax rule: allow using `...rest` to omit properties from an object ([no-unused-vars](https://eslint.org/docs/rules/no-unused-vars)) [#​800](https://togithub.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://togithub.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-duplicates.md)) [#​599](https://togithub.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://togithub.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/process-exit-as-throw.md)) [#​699](https://togithub.com/standard/standard/issues/699) - Makes certain other rules work better and give fewer false positives - Relax rule: allow Unnecessary Labels ([no-extra-label](https://eslint.org/docs/rules/no-extra-label)) - Redundant, since "no-labels" is already enabled, which is more restrictive ### [`v9.0.2`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#902---2017-03-17) [Compare Source](https://togithub.com/standard/standard/compare/v9.0.1...v9.0.2) ##### Changed rules - Relax rule: Allow tagged template string expressions ([no-unused-expressions](https://eslint.org/docs/rules/no-unused-expressions)) [#​822](https://togithub.com/standard/standard/issues/822) ### [`v9.0.1`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#901---2017-03-07) [Compare Source](https://togithub.com/standard/standard/compare/v9.0.0...v9.0.1) ##### Changed rules - Relax rule: Allow mixing basic operators without parens ([no-mixed-operators](https://eslint.org/docs/rules/no-mixed-operators)) [#​816](https://togithub.com/standard/standard/issues/816) - Specifically, these operators: `+`, `-`, `*`, `/`, `%`, and `**` ### [`v9.0.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#900---2017-02-28) [Compare Source](https://togithub.com/standard/standard/compare/v8.6.0...v9.0.0) 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://togithub.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](https://eslint.org/docs/rules/no-mixed-operators)) [#​566](https://togithub.com/standard/standard/issues/566) \[5%] - Enforce 1 newline at end of file (previously 1 or 2 were ok) ([no-multiple-empty-lines](https://eslint.org/docs/rules/no-multiple-empty-lines)) [#​733](https://togithub.com/standard/standard/issues/733) \[3%] - Disallow Unused Expressions ([no-unused-expressions](https://eslint.org/docs/rules/no-unused-expressions)) [#​690](https://togithub.com/standard/standard/issues/690) \[3%] - Note: this affects users of the Chai test framework. [Read about the changes you need to make](https://togithub.com/standard/standard/issues/690#issuecomment-278533482). - Disallow redundant return statements ([no-useless-return](https://eslint.org/docs/rules/no-useless-return)) [#​694](https://togithub.com/standard/standard/issues/694) \[1%] - Disallow Incorrect Early Use ([no-use-before-define](https://eslint.org/docs/rules/no-use-before-define)) [#​636](https://togithub.com/standard/standard/issues/636) \[0%] - Enforce that Promise rejections are passed an Error object as a reason ([prefer-promise-reject-errors](https://eslint.org/docs/rules/prefer-promise-reject-errors)) [#​777](https://togithub.com/standard/standard/issues/777) \[0%] - Enforce comparing `typeof` expressions against string literals ([valid-typeof](https://eslint.org/docs/rules/valid-typeof)) [#​629](https://togithub.com/standard/standard/issues/629) \[0%] - Enforce spacing around \* in generator functions ([generator-star-spacing](https://eslint.org/docs/rules/generator-star-spacing)) [#​724](https://togithub.com/standard/standard/issues/724) \[0%] - Disallow Unnecessary Labels ([no-extra-label](https://eslint.org/docs/rules/no-extra-label)) [#​736](https://togithub.com/standard/standard/issues/736) \[0%] - Disallow spacing between template tags and their literals ([template-tag-spacing](https://eslint.org/docs/rules/template-tag-spacing)) [#​755](https://togithub.com/standard/standard/issues/775) \[0%] - Disallow padding within switch statements and classes ([padded-blocks](https://eslint.org/docs/rules/padded-blocks)) [#​610](https://togithub.com/standard/standard/issues/610) \[0%] - Enforce that Symbols are passed a description ([symbol-description](https://eslint.org/docs/rules/symbol-description)) [#​630](https://togithub.com/standard/standard/issues/630) \[0%] ##### Changed rules - Relax rule: allow TypeScript Triple-Slash Directives ([spaced-comment](https://eslint.org/docs/rules/spaced-comment)) [#​660](https://togithub.com/standard/standard/issues/660) - Relax rule: allow Flow Comments ([spaced-comment](https://eslint.org/docs/rules/spaced-comment)) [#​661](https://togithub.com/standard/standard/issues/661) ### [`v8.6.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#860---2016-11-22) [Compare Source](https://togithub.com/standard/standard/compare/v8.5.0...v8.6.0) - Update ESLint from 3.8.x to 3.10.x - 3 additional rules are now fixable with `standard --fix` ### [`v8.5.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#850---2016-10-25) [Compare Source](https://togithub.com/standard/standard/compare/v8.4.0...v8.5.0) - Update ESLint from 3.7.x to 3.8.x - 2 additional rules are now fixable with `standard --fix` ### [`v8.4.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#840---2016-10-10) [Compare Source](https://togithub.com/standard/standard/compare/v8.3.0...v8.4.0) - 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://togithub.com/standard/standard/issues/654) ### [`v8.3.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#830---2016-09-29) [Compare Source](https://togithub.com/standard/standard/compare/v8.2.0...v8.3.0) 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.2.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#820---2016-09-26) [Compare Source](https://togithub.com/standard/standard/compare/v8.1.0...v8.2.0) 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.1.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#810---2016-09-17) [Compare Source](https://togithub.com/standard/standard/compare/v8.0.0...v8.1.0) - Update ESLint from 3.3.x to 3.5.x - Around 10 additional rules are now fixable with `standard --fix` ### [`v8.0.0`](https://togithub.com/standard/standard/blob/HEAD/CHANGELOG.md#800---2016-08-23) [Compare Source](https://togithub.com/standard/standard/compare/v7.1.2...v8.0.0) 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

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.