Skip to content

Commit 8c2df74

Browse files
committed
[eslint config] [base] v10.0.0
1 parent 9f51fd2 commit 8c2df74

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

packages/eslint-config-airbnb-base/CHANGELOG.md

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

packages/eslint-config-airbnb-base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-airbnb-base",
3-
"version": "9.0.0",
3+
"version": "10.0.0",
44
"description": "Airbnb's base JS ESLint config, following our styleguide",
55
"main": "index.js",
66
"scripts": {

packages/eslint-config-airbnb-base/rules/style.js

-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,6 @@ module.exports = {
352352

353353
// require or disallow a space immediately following the // or /* in a comment
354354
// http://eslint.org/docs/rules/spaced-comment
355-
// TODO: semver-major: set balanced to "false"
356355
'spaced-comment': ['error', 'always', {
357356
line: {
358357
exceptions: ['-', '+'],

0 commit comments

Comments
 (0)