I\'m new to eslint and it\'s spewing out a ton of errors telling me to use doublequotes:
error Strings must use doublequote
That\'s not my pre
http://eslint.org/docs/rules/quotes.html
{ "env": { "node": 1 }, "rules": { "quotes": [2, "single", { "avoidEscape": true }] } }