File tree 3 files changed +15
-2
lines changed
packages/eslint-config-airbnb-base
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
15
9.0.0 / 2016-10-16
2
16
==================
3
17
- [ breaking] Add ` ForOfStatement ` to ` no-restricted-syntax ` (#1122 , #1134 )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " eslint-config-airbnb-base" ,
3
- "version" : " 9 .0.0" ,
3
+ "version" : " 10 .0.0" ,
4
4
"description" : " Airbnb's base JS ESLint config, following our styleguide" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -352,7 +352,6 @@ module.exports = {
352
352
353
353
// require or disallow a space immediately following the // or /* in a comment
354
354
// http://eslint.org/docs/rules/spaced-comment
355
- // TODO: semver-major: set balanced to "false"
356
355
'spaced-comment' : [ 'error' , 'always' , {
357
356
line : {
358
357
exceptions : [ '-' , '+' ] ,
You can’t perform that action at this time.
0 commit comments