Skip to content

Commit

Permalink
Merge pull request #11 from Automattic/remove/quote-props-rule
Browse files Browse the repository at this point in the history
remove quote-props rule
  • Loading branch information
aduth authored and sirreal committed Dec 5, 2018
1 parent ea715a4 commit 455f79e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/eslint-config-wpcalypso/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### v1.1.0 (2017-10-03)

- Removed: `quote-props` will no longer flag keyword properties as error ([reference](https://eslint.org/docs/rules/quote-props#keywords))

#### v1.0.0 (2017-09-07)

- Breaking: Upgraded ESLint peer dependency from 3.x to 4.x. [See v4.0.0 Migration Guide](https://eslint.org/docs/user-guide/migrating-to-4.0.0)
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-wpcalypso/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ module.exports = {
} } ],
'padded-blocks': [ 2, 'never' ],
'prefer-const': 2,
'quote-props': [ 2, 'as-needed', { keywords: true } ],
'quote-props': [ 2, 'as-needed' ],
quotes: [ 2, 'single', 'avoid-escape' ],
semi: 2,
'semi-spacing': 2,
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-wpcalypso/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/eslint-config-wpcalypso/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-wpcalypso",
"version": "1.0.0",
"version": "1.1.0",
"description": "ESLint configuration following WordPress.com's Calypso JavaScript Coding Guidelines",
"keywords": [
"eslint"
Expand Down

0 comments on commit 455f79e

Please sign in to comment.