mirror of
https://github.com/airbnb/javascript.git
synced 2026-01-14 00:28:25 -05:00
[eslint config] [base] v10.0.0
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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": {
|
||||
|
||||
@@ -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: ['-', '+'],
|
||||
|
||||
Reference in New Issue
Block a user