diff --git a/package.json b/package.json index 567d675..d75cce4 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "lib/index.js", "scripts": { "start": "tsc -w", - "test": "tsc && tslint -c tslint.json '*.ts' && ava --verbose" + "test": "tsc && tslint -c tslint.js '*.ts' && ava --verbose" }, "repository": { "type": "git", diff --git a/tslint.json b/tslint.js similarity index 94% rename from tslint.json rename to tslint.js index 9414a58..e6d9c99 100644 --- a/tslint.json +++ b/tslint.js @@ -1,4 +1,4 @@ -{ +module.exports = { "defaultSeverity": "error", "extends": [ "tslint:recommended" @@ -11,4 +11,4 @@ "no-unused-expression": [true, "allow-fast-null-checks"] }, "rulesDirectory": [] -} \ No newline at end of file +}