{
    // We don't want globals in the browser to set off the linter, all those are ok
    "env": {
        "browser": 1
    },

    // Current list of global variables.  Anything else should be alerted
    // to us
    "globals": {
        "$": 1,
        "localforage",
        "Topics",
        "Topic",
        "getId",
        "online",
        "submitTopic",
        "guid",
        "barrier"
    },

    "rules": {
        // See https://github.com/eslint/eslint/blob/master/docs/rules/no-multi-str.md for more
        // information on this rule and why it's safe to ignore it
        "no-multi-str": 0,

        // Ignoring this rule enables us to have clean multiline strings
        "quotes": [0, "double"],

        // Only an issue for IE8 which we do not care about 
        "no-catch-shadow": 0
    }

}
