From ede0174eafbedf29ea62686184b41084109bad78 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 8 Feb 2017 19:54:56 -0800 Subject: [PATCH] Relax rule: allow TypeScript Triple-Slash Directives Documented here: http://www.typescriptlang.org/docs/handbook/triple-slash-directives.html Fixes: https://github.com/feross/standard/issues/660 --- eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslintrc.json b/eslintrc.json index 75028620..5d7dd977 100644 --- a/eslintrc.json +++ b/eslintrc.json @@ -151,7 +151,7 @@ "space-infix-ops": "error", "space-unary-ops": ["error", { "words": true, "nonwords": false }], "spaced-comment": ["error", "always", { - "line": { "markers": ["*package", "!", ","] }, + "line": { "markers": ["*package", "!", "/", ","] }, "block": { "balanced": true, "markers": ["*package", "!", ","], "exceptions": ["*"] } }], "template-curly-spacing": ["error", "never"],