From d870ceee4c82f8a389e96312278b2e95860a4d88 Mon Sep 17 00:00:00 2001 From: Lukas Tetzlaff Date: Tue, 31 Oct 2017 16:30:26 -0700 Subject: [PATCH] Drop xo for style checking Code compiled from ts to js does not match xo-standard and cannot be configured. --- package.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index a1e0256..c372f26 100644 --- a/package.json +++ b/package.json @@ -16,9 +16,9 @@ "node": ">=4" }, "scripts": { - "test": "xo && ava", + "test": "tsc && ava", "build": "tsc", - "prepublish": "tsc" + "prepublish": "tsc" }, "files": [ "index.js", @@ -49,7 +49,6 @@ "@types/node": "^8.0.47", "ava": "*", "jsdom": "^9.12.0", - "typescript": "^2.6.1", - "xo": "*" + "typescript": "^2.6.1" } }