Skip to content

Commit

Permalink
[eslint config] [base] v10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Nov 6, 2016
1 parent 9f51fd2 commit 8c2df74
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
14 changes: 14 additions & 0 deletions packages/eslint-config-airbnb-base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-airbnb-base/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
1 change: 0 additions & 1 deletion packages/eslint-config-airbnb-base/rules/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: ['-', '+'],
Expand Down

0 comments on commit 8c2df74

Please sign in to comment.