Skip to content

Commit

Permalink
build(deps-dev): bump prettier from 1.18.2 to 1.19.1
Browse files Browse the repository at this point in the history
Bumps [prettier](https://github.com/prettier/prettier) from 1.18.2 to 1.19.1.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/prettier@1.18.2...1.19.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
  • Loading branch information
dependabot-preview[bot] authored and bmish committed Nov 11, 2019
1 parent 5a59424 commit b9c8bc0
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"lerna-changelog": "^0.8.2",
"prettier": "1.18.2"
"prettier": "1.19.1"
},
"dependencies": {
"@ember-data/rfc395-data": "^0.0.4",
Expand Down
11 changes: 9 additions & 2 deletions tests/lib/rules/no-empty-attrs.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ eslintTester.run('no-empty-attrs', rule, {
someComputedProperty: computed.bool(true)
});`,
output: null,
errors: [{ message, line: 3 }, { message, line: 4 }],
errors: [
{ message, line: 3 },
{ message, line: 4 },
],
},
{
code: `export default Model.extend({
Expand All @@ -77,7 +80,11 @@ eslintTester.run('no-empty-attrs', rule, {
dob: attr()
});`,
output: null,
errors: [{ message, line: 2 }, { message, line: 3 }, { message, line: 4 }],
errors: [
{ message, line: 2 },
{ message, line: 3 },
{ message, line: 4 },
],
},
{
filename: 'example-app/models/some-model.js',
Expand Down
5 changes: 4 additions & 1 deletion tests/lib/rules/no-on-calls-in-components.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ eslintTester.run('no-on-calls-in-components', rule, {
anotherTest: Ember.on("willDestroyElement", function () {})
});`,
output: null,
errors: [{ message, line: 2 }, { message, line: 4 }],
errors: [
{ message, line: 2 },
{ message, line: 4 },
],
},
{
filename: 'example-app/components/some-component/component.js',
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3519,10 +3519,10 @@ prettier-linter-helpers@^1.0.0:
dependencies:
fast-diff "^1.1.2"

prettier@1.18.2:
version "1.18.2"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea"
integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw==
prettier@1.19.1:
version "1.19.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==

pretty-format@^24.9.0:
version "24.9.0"
Expand Down

0 comments on commit b9c8bc0

Please sign in to comment.