File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
packages/eslint-config-airbnb-base Expand file tree Collapse file tree 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+
1159.0.0 / 2016-10-16
216==================
317 - [ breaking] Add ` ForOfStatement ` to ` no-restricted-syntax ` (#1122 , #1134 )
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff 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 : [ '-' , '+' ] ,
You can’t perform that action at this time.
0 commit comments