Exclude failing import

This commit is contained in:
Jori Lallo 2017-08-28 21:02:11 -07:00
parent 5f514f559c
commit 795853cccb
1 changed files with 7 additions and 0 deletions

View File

@ -18,6 +18,13 @@
// Prettier automatically uses the least amount of parens possible, so this
// does more harm than good.
"no-mixed-operators": "off",
// Temporary fix for a failing import lint
"import/no-unresolved": [
"error",
{
"ignore": [ "slate-drop-or-paste-images" ]
}
],
// Flow
"flowtype/require-valid-file-annotation": [
2,