Skip to content

Commit

Permalink
Merge pull request #69 from github/update-deps
Browse files Browse the repository at this point in the history
Update deps
  • Loading branch information
koddsson authored Jun 27, 2019
2 parents 03aa5d2 + ee7501c commit 32de0b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@typescript-eslint/eslint-plugin": "^1.3.0",
"@typescript-eslint/parser": "^1.3.0",
"babel-eslint": ">=8.2.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-eslint-comments": ">=3.0.1",
"eslint-plugin-flowtype": ">=2.49.3",
"eslint-plugin-graphql": ">=3.0.1",
Expand All @@ -49,7 +49,7 @@
"eslint-rule-documentation": ">=1.0.0",
"inquirer": "^6.0.0",
"prettier": ">=1.12.0",
"read-pkg-up": "^4.0.0",
"read-pkg-up": "^6.0.0",
"svg-element-attributes": "^1.2.1"
},
"peerDependencies": {
Expand All @@ -63,9 +63,9 @@
"prettier.config.js"
],
"devDependencies": {
"eslint": "^4.8.0",
"flow-bin": "^0.74.0",
"eslint": "^6.0.1",
"flow-bin": "^0.102.0",
"graphql": "^14.0.2",
"mocha": "^5.1.0"
"mocha": "^6.1.4"
}
}
6 changes: 3 additions & 3 deletions tests/no-implicit-buggy-globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ ruleTester.run('no-implicit-buggy-globals', rule, {
},
{
code: 'var foo = 1;',
parserOptions: {sourceType: 'module'}
parserOptions: {sourceType: 'module', ecmaVersion: 2015}
},
{
code: 'let foo = 1;',
parserOptions: {sourceType: 'module'}
parserOptions: {sourceType: 'module', ecmaVersion: 2015}
},
{
code: 'const foo = 1;',
parserOptions: {sourceType: 'module'}
parserOptions: {sourceType: 'module', ecmaVersion: 2015}
}
],
invalid: [
Expand Down

0 comments on commit 32de0b2

Please sign in to comment.