xo: Disable some of the typescript-eslint rule.

One rule requires use to move all the functions which is
unnessacary churn.
This commit is contained in:
Priyank Patel
2019-06-19 18:51:37 -04:00
committed by Akash Nimare
parent ec91d46f7b
commit 82d9f795c2

View File

@@ -194,7 +194,9 @@
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"no-prototype-builtins": 0,
"lines-between-class-members": 0
"lines-between-class-members": 0,
"@typescript-eslint/member-ordering": "never",
"@typescript-eslint/restrict-plus-operands": "never"
}
}
],