Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ rules:
# https://github.com/prettier/eslint-plugin-prettier#installation
prettier/prettier: error

# `eslint-plugin-flowtype` rule list based on `v2.50.0`
# `eslint-plugin-flowtype` rule list based on `v3.0.0`
# https://github.com/gajus/eslint-plugin-flowtype#eslint-plugin-flowtype

flowtype/array-style-complex-type: [error, verbose]
Expand All @@ -52,7 +52,7 @@ rules:
flowtype/no-primitive-constructor-types: error
flowtype/no-types-missing-file-annotation: error
#flowtype/no-unused-expressions: undecided
flowtype/no-weak-types: [error, {any: false}]
flowtype/no-weak-types: [error, { any: false, mixed: false }]
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Required because of gajus/eslint-plugin-flowtype#362

flowtype/object-type-delimiter: off
flowtype/require-exact-type: off
flowtype/require-parameter-type: off
Expand All @@ -72,7 +72,7 @@ rules:
flowtype/valid-syntax: off

##################################################
# ESLint builtin rules list based on `v5.6.0`
# ESLint builtin rules list based on `v5.7.0`
##################################################

# Possible Errors
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@
"benchmark": "2.1.4",
"chai": "4.2.0",
"coveralls": "3.0.2",
"eslint": "5.6.1",
"eslint-plugin-flowtype": "2.50.3",
"eslint": "5.7.0",
"eslint-plugin-flowtype": "3.0.0",
"eslint-plugin-prettier": "3.0.0",
"flow-bin": "0.83.0",
"mocha": "5.2.0",
"nyc": "13.0.1",
"nyc": "13.1.0",
"prettier": "1.14.3",
"sane": "4.0.1"
}
Expand Down
Loading