gak
Version:
Graph Analysis Kit for NodeJS
88 lines (87 loc) • 2.06 kB
Plain Text
{
"parser": "babel-eslint",
"rules": {
"quotes": [2, "single"],
"indent": [2, 2, {"VariableDeclarator": { "var": 2, "let": 2, "const": 3 }}],
"strict": 2,
"no-fallthrough": 0,
"no-bitwise": 0,
"camelcase": [2, {"properties": "never"}],
"eqeqeq": 2,
"no-unused-expressions": 0,
"wrap-iife": 2,
"no-undef": 2,
"new-cap": [2, {
"capIsNewExceptions" : ['ObjectId'],
"newIsCapExceptions": ['collection']
}],
"prefer-const" : 2,
"no-caller": 2,
"no-unused-vars": 2,
"no-multi-str": 0,
"key-spacing": 0,
"no-underscore-dangle": 0,
"no-multi-spaces": 0,
"comma-spacing": 0,
"space-infix-ops": 0,
"no-loop-func": 0,
"eol-last": 0,
"no-wrap-func": 0,
"no-shadow": 0,
"no-trailing-spaces": 0,
"semi-spacing": 0,
"no-mixed-requires": 0,
"no-use-before-define": 0,
"consistent-return": 0,
"comma-dangle": 0,
"no-empty": 0,
"no-spaced-func": 0,
"no-extra-boolean-cast": 0,
"yoda": 0,
"no-path-concat": 0,
"no-new": 0,
"no-constant-condition": 0,
"no-alert": 0,
"handle-callback-err": 0
},
"env": {
"browser": true,
"node": true
},
"globals": {
"__app": false,
"ObjectId": false,
"_": true,
"moment": true,
"describe": true,
"before": true,
"beforeEach": true,
"after": true,
"afterEach": true,
"it": true,
"mdb": true,
"$": true
},
"ecmaFeatures": {
"arrowFunctions": true,
"binaryLiterals": true,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"destructuring": true,
"forOf": true,
"generators": true,
"modules": true,
"objectLiteralComputedProperties": true,
"objectLiteralDuplicateProperties": true,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"octalLiterals": true,
"regexUFlag": true,
"regexYFlag": true,
"restParams": true,
"spread": true,
"superInFunctions": true,
"templateStrings": true
}
}