From ca7f4de93e21a2e463589fffd81d4651e75b5cfb Mon Sep 17 00:00:00 2001 From: Lennart Kats Date: Thu, 26 Jan 2017 14:40:56 +0000 Subject: [PATCH] Disable comment rule --- .eslintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index ad82f87e..1f8a62b4 100644 --- a/.eslintrc +++ b/.eslintrc @@ -97,7 +97,8 @@ rules: // DISABLED: causes issue with define(function() in client-side code // indent: [1, 4, { SwitchCase: 1, outerIIFEBody: 0, MemberExpression: 1, FunctionDeclaration: { body: 0, parameters: 1 }, FunctionExpression: { body: 0, parameters: 1 } }] object-curly-spacing: [1, "always", { objectsInObjects: false, arraysInObjects: false }] - spaced-comment: 1 + // DISABLED: causes issue with /*** single-line, triple-star comments ***/ + // spaced-comment: [1, "always", { exceptions: ["*"] }] comma-spacing: 1 no-multi-spaces: 1 no-lone-blocks: 1