{
    "env": {
        "node": true,
        "browser": true,
        "es6": true,
        "mocha": true
    },

    "parser": "babel-eslint",

    "parserOptions": {
        "ecmaVersion": 6,
        "sourceType": "module",
        "ecmaFeatures": {
            "jsx": true,
            "modules": true,
            "arrowFunctions": true,
            "binaryLiterals": true,
            "blockBindings": true,
            "classes": true,
            "defaultParams": true,
            "destructuring": true,
            "forOf": true,
            "generators": true,
            "objectLiteralComputedProperties": true,
            "objectLiteralDuplicateProperties": true,
            "objectLiteralShorthandMethods": true,
            "objectLiteralShorthandProperties": true,
            "octalLiterals": true,
            "regexUFlag": true,
            "regexYFlag": true,
            "restParams": true,
            "spread": true,
            "superInFunctions": true,
            "templateStrings": true,
            "unicodeCodePointEscapes": true,
            "globalReturn": true,
            "experimentalObjectRestSpread": true
        }
    },

    "rules": {
        "comma-dangle": [2, "never"],
        "no-cond-assign": 0,
        "no-console": 0,
        "no-constant-condition": 0,
        "no-control-regex": 0,
        "no-debugger": 2,
        "no-dupe-args": 2,
        "no-dupe-keys": 2,
        "no-duplicate-case": 2,
        "no-empty-character-class": 1,
        "no-empty": 0,
        "no-ex-assign": 1,
        "no-extra-boolean-cast": 0,
        "no-extra-parens": [1, functions],
        "no-extra-semi": 1,
        "no-func-assign": 2,
        "no-inner-declarations": 0,
        "no-invalid-regexp": 1,
        "no-irregular-whitespace": 2,
        "no-negated-in-lhs": 2,
        "no-obj-calls": 2,
        "no-regex-spaces": 1,
        "no-reserved-keys": 0,
        "no-sparse-arrays": 2,
        "no-unexpected-multiline": 0,
        "no-unreachable": 2,
        "use-isnan": 2,
        "valid-jsdoc": 0,
        "valid-typeof": 2,

        "accessor-pairs": [1, {setWithoutGet: true}],
        "block-scoped-var": 0,
        "complexity": 0,
        "consistent-return": 0,
        "curly": [2, multi-line],
        "default-case": 0,
        "dot-notation": 0,
        "dot-location": 0,
        "eqeqeq": [0, allow-null],
        "guard-for-in": 0,
        "no-alert": 0,
        "no-caller": 2,
        "no-div-regex": 0,
        "no-else-return": 0,
        "no-eq-null": 0,
        "no-eval": 2,
        "no-extend-native": 1,
        "no-extra-bind": 1,
        "no-fallthrough": 1,
        "no-floating-decimal": 2,
        "no-implicit-coercion": 0,
        "no-implied-eval": 2,
        "no-invalid-this": 0,
        "no-iterator": 0,
        "no-labels": [2, { "allowLoop": true, "allowSwitch": true }],
        "no-lone-blocks": 1,
        "no-loop-func": 0,
        "no-magic-numbers": 0,
        "no-multi-spaces": 0,
        "no-multi-str": 0,
        "no-native-reassign": [2, {exceptions: [Map, Set, console]}],
        "no-new-func": 2,
        "no-new-wrappers": 1,
        "no-new": 0,
        "no-octal-escape": 1,
        "no-octal": 1,
        "no-param-reassign": 0,
        "no-process-env": 0,
        "no-proto": 2,
        "no-redeclare": 0,
        "no-return-assign": 0,
        "no-script-url": 0,
        "no-self-compare": 1,
        "no-sequences": 1,
        "no-throw-literal": 0,
        "no-unused-expressions": 0,
        "no-useless-call": 1,
        "no-useless-concat": 1,
        "no-void": 0,
        "no-warning-comments": 0,
        "no-with": 2,
        "radix": 2,
        "vars-on-top": 0,
        "wrap-iife": 0,
        "yoda": 0,

        "strict": 0,

        "init-declarations": 0,
        "no-catch-shadow": 0,
        "no-delete-var": 2,
        "no-label-var": 1,
        "no-shadow-restricted-names": 2,
        "no-shadow": 0,
        "no-undef-init": 0,
        "no-undef": "off",
        "no-undefined": 0,
        "no-unused-vars": [1, {args: none}],
        "no-use-before-define": 0,

        "callback-return": 0,
        "global-require": 0,
        "handle-callback-err": 0,
        "no-mixed-requires": 0,
        "no-new-require": 0,
        "no-path-concat": 0,
        "no-process-exit": 0,
        "no-restricted-modules": 0,
        "no-sync": 0,

        "array-bracket-spacing": 2,
        "block-spacing": 0,
        "brace-style": [1, 1tbs, {allowSingleLine: true}],
        "camelcase": [1, {"properties": "never"}],
        "comma-spacing": [1, {before: false, after: true}],
        "comma-style": [1, last],
        "computed-property-spacing": [1, never],
        "consistent-this": [1, _this],
        "eol-last": 0,
        "func-names": 0,
        "func-style": [0, declaration],
        "id-length": 0,
        "id-match": 0,
        "indent": [1, 2, {"SwitchCase": 1}],
        "jsx-quotes": 0,
        "key-spacing": [2, {beforeColon: false, afterColon: true}],
        "linebreak-style": [0, unix],
        "lines-around-comment": 0,
        "max-nested-callbacks": 0,
        "new-cap": 1,
        "new-parens": 2,
        "newline-after-var": 0,
        "no-array-constructor": 2,
        "no-continue": 0,
        "no-inline-comments": 1,
        "no-lonely-if": 0,
        "no-mixed-spaces-and-tabs": 2,
        "no-multiple-empty-lines": [2, {max: 2}],
        "no-negated-condition": 0,
        "no-nested-ternary": 0,
        "no-new-object": 2,
        "no-restricted-syntax": 0,
        "no-spaced-func": 2,
        "no-ternary": 0,
        "no-trailing-spaces": [1, { "skipBlankLines": true }],
        "no-underscore-dangle": 0,
        "no-unneeded-ternary": 1,
        "object-curly-spacing": 0,
        "one-var": [0, never],
        "operator-assignment": [1, always],
        "operator-linebreak": 0,
        "padded-blocks": 0,
        "quote-props": [0, as-needed],
        "quotes": [2, single, avoid-escape],
        "require-jsdoc": 0,
        "semi-spacing": [1, {before: false, after: true}],
        "semi": 0,
        "sort-vars": 0,
        "space-before-blocks": [2, always],
        "space-before-function-paren": [1, {anonymous: never, named: never}],
        "keyword-spacing": [2, {"before": true, "after": true}],
        "space-in-parens": [2, never],
        "space-infix-ops": [2, {"int32Hint": false}],
        "space-unary-ops": [1, {words: true, nonwords: false}],
        "spaced-comment": [1, always],
        "wrap-regex": 0,

        "arrow-spacing": [1, {before: true, after: true}],
        "no-const-assign": 2,
        "no-this-before-super": 2
    },

    "globals": {
        "$": true,
        "jQuery": true
    }
}
