[eslint config] [base] v10.0.0

This commit is contained in:
Jordan Harband
2016-11-06 10:41:38 -08:00
parent 9f51fd264b
commit 8c2df7493a
3 changed files with 15 additions and 2 deletions

View File

@@ -1,3 +1,17 @@
10.0.0 / 2016-11-06
==================
- [breaking] prefer `**` over `Math.pow`
- [breaking] `comma-dangle`: require trailing commas for functions
- [breaking] enable `no-useless-return`
- [breaking] tighten up `indent`
- [breaking] tighten up `spaced-comment`
- [breaking] enable `import/no-named-default`
- [patch] loosen `max-len` with `ignoreRegExpLiterals` option
- [patch] loosen `no-extraneous-dependencies` for test files (#959, #1089)
- [deps] update `eslint`, `eslint-plugin-import`
- [dev deps] update `eslint-find-rules`
- [Tests] on `node` `v7`
9.0.0 / 2016-10-16
==================
- [breaking] Add `ForOfStatement` to `no-restricted-syntax` (#1122, #1134)

View File

@@ -1,6 +1,6 @@
{
"name": "eslint-config-airbnb-base",
"version": "9.0.0",
"version": "10.0.0",
"description": "Airbnb's base JS ESLint config, following our styleguide",
"main": "index.js",
"scripts": {

View File

@@ -352,7 +352,6 @@ module.exports = {
// require or disallow a space immediately following the // or /* in a comment
// http://eslint.org/docs/rules/spaced-comment
// TODO: semver-major: set balanced to "false"
'spaced-comment': ['error', 'always', {
line: {
exceptions: ['-', '+'],