diff --git a/packages/eslint-config-airbnb/CHANGELOG.md b/packages/eslint-config-airbnb/CHANGELOG.md index 3968eea8..64cbce3b 100644 --- a/packages/eslint-config-airbnb/CHANGELOG.md +++ b/packages/eslint-config-airbnb/CHANGELOG.md @@ -1,3 +1,15 @@ +7.0.0 / 2016-04-11 +================== +- [react] [breaking] Add accessibility rules to the React style guide + `eslint-plugin-a11y` +- [breaking] enable `react/require-render-return` +- [breaking] Add `no-dupe-class-members` rule + section ([#785](https://github.com/airbnb/javascript/issues/785)) +- [breaking] error on debugger statements +- [breaking] add `no-useless-escape` rule +- [breaking] add `no-duplicate-imports` rule +- [semver-minor] enable `jsx-pascal-case` rule +- [deps] update `eslint`, `react` +- [dev deps] update `eslint`, `eslint-plugin-react` + 6.2.0 / 2016-03-22 ================== - [new] Allow arrow functions in JSX props diff --git a/packages/eslint-config-airbnb/package.json b/packages/eslint-config-airbnb/package.json index 37928a70..88d8d425 100644 --- a/packages/eslint-config-airbnb/package.json +++ b/packages/eslint-config-airbnb/package.json @@ -1,12 +1,12 @@ { "name": "eslint-config-airbnb", - "version": "6.2.0", + "version": "7.0.0", "description": "Airbnb's ESLint config, following our styleguide", "main": "index.js", "scripts": { "lint": "eslint .", "tests-only": "babel-tape-runner ./test/test-*.js", - "test": "parallelshell 'npm run lint' 'npm run tests-only'" + "test": "parallelshell 'npm run --silent lint' 'npm run --silent tests-only'" }, "repository": { "type": "git",