From 6615a9242df1283db7c9d21fdbf6385cd5844fce Mon Sep 17 00:00:00 2001 From: Jonathan Olson Date: Wed, 11 Nov 2015 22:45:57 -0700 Subject: [PATCH] Adding FormulaNode (and demo) with KaTeX and related utilities to package KaTeX. See https://github.com/phetsims/scenery/issues/457 --- eslint/.eslintrc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/eslint/.eslintrc b/eslint/.eslintrc index effc06931..4d70b8f50 100644 --- a/eslint/.eslintrc +++ b/eslint/.eslintrc @@ -6,12 +6,12 @@ "extends": "eslint:recommended", // The new rules, overrides, etc. "rules": { - // + // // Permit console.log statements (we have a lot of them) // TODO: Find a way to make sure no console.log statements make it to production. Can use the no-console rule - // but we want to be able to use console.log during development. + // but we want to be able to use console.log during development. "no-console": 0, - // + // // specify whether backticks, double or single quotes should be used (fixable) "quotes": [ 2, @@ -73,7 +73,7 @@ // // disallow use of assignment in return statement "no-return-assign": 2, - // + // // disallow comparisons where both sides are exactly the same "no-self-compare": 2, // @@ -84,7 +84,7 @@ // disallow use of undefined when initializing variables "no-undef-init": 2, // - // + // "require-statement-match": 2, // permit only one var declaration per line, see #390 "one-var": [ @@ -194,6 +194,8 @@ //For file loading, see SaveLoadNode in Energy Skate Park": Basics "FileReader": false, "Buffer": false, + // For KaTeX + "katex": false, // For qunit "equal": false, "test": false