Skip to content

Instantly share code, notes, and snippets.

@jaidetree
Created November 12, 2015 00:22
Show Gist options
  • Select an option

  • Save jaidetree/537caeb1772e5f3e0b3e to your computer and use it in GitHub Desktop.

Select an option

Save jaidetree/537caeb1772e5f3e0b3e to your computer and use it in GitHub Desktop.
{
"parser":"babel-eslint",
"env":{
"browser":true,
"es6":true,
"node":true
},
"globals":{
"require":true,
"DataBootstrap":true,
"CKEDITOR":true,
"Backbone":true,
"React":true,
"Braintree":true,
"google":true,
"Raven":true,
"mixpanel":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,
"unicodeCodePointEscapes":true,
"globalReturn":false,
"jsx":true,
"experimentalObjectRestSpread":true
},
"rules":{
"comma-dangle":2,
"no-cond-assign":2,
"no-console":2,
"no-constant-condition":2,
"no-control-regex":2,
"no-debugger":2,
"no-dupe-keys":2,
"no-empty":2,
"no-empty-character-class":2,
"no-ex-assign":2,
"no-extra-boolean-cast":2,
"no-extra-parens":2,
"no-extra-semi":2,
"no-func-assign":2,
"no-inner-declarations":2,
"no-invalid-regexp":2,
"no-irregular-whitespace":2,
"no-negated-in-lhs":2,
"no-obj-calls":2,
"no-regex-spaces":2,
"no-sparse-arrays":2,
"no-unreachable":2,
"use-isnan":2,
"valid-jsdoc":[
2,
{
"requireReturn":false
}
],
"valid-typeof":2,
"block-scoped-var":1,
"complexity":1,
"consistent-return":1,
"curly":1,
"default-case":1,
"dot-notation":1,
"eqeqeq":1,
"guard-for-in":1,
"no-alert":1,
"no-caller":1,
"no-div-regex":1,
"no-else-return":1,
"no-empty-label":1,
"no-eq-null":1,
"no-eval":1,
"no-extend-native":1,
"no-extra-bind":1,
"no-fallthrough":1,
"no-floating-decimal":1,
"no-implied-eval":1,
"no-iterator":1,
"no-labels":1,
"no-lone-blocks":1,
"no-loop-func":1,
"no-multi-spaces":1,
"no-multi-str":1,
"no-native-reassign":1,
"no-new":1,
"no-new-func":1,
"no-new-wrappers":1,
"no-octal":1,
"no-octal-escape":1,
"no-process-env":1,
"no-proto":1,
"no-redeclare":1,
"no-return-assign":1,
"no-script-url":1,
"no-self-compare":1,
"no-sequences":1,
"no-unused-expressions":1,
"no-void":1,
"no-warning-comments":1,
"no-with":1,
"radix":1,
"vars-on-top":1,
"wrap-iife":1,
"yoda":1,
"no-catch-shadow":1,
"no-delete-var":1,
"no-label-var":1,
"no-shadow":1,
"no-shadow-restricted-names":1,
"no-undef":1,
"no-undef-init":1,
"no-undefined":1,
"no-unused-vars":1,
"no-use-before-define":1,
"array-bracket-spacing":[
1,
"never"
],
"brace-style":1,
"camelcase":1,
"comma-spacing":1,
"comma-style":1,
"computed-property-spacing":[
2,
"never"
],
"consistent-this":1,
"eol-last":1,
"func-names":0,
"func-style":[
1,
"declaration",
{
"allowArrowFunctions":true
}
],
"key-spacing":1,
"max-nested-callbacks":1,
"new-cap":1,
"new-parens":1,
"no-array-constructor":1,
"no-inline-comments":0,
"no-lonely-if":1,
"no-mixed-spaces-and-tabs":1,
"no-multiple-empty-lines":1,
"no-nested-ternary":1,
"no-new-object":1,
"no-spaced-func":1,
"no-ternary":0,
"no-trailing-spaces":1,
"no-underscore-dangle":1,
"one-var":1,
"operator-assignment":1,
"padded-blocks":[
1,
"never"
],
"quote-props":[
1,
"consistent-as-needed"
],
"quotes":[
1,
"single"
],
"semi":1,
"semi-spacing":1,
"sort-vars":0,
"space-before-function-paren":1,
"space-after-keywords":1,
"space-before-blocks":1,
"object-curly-spacing":[
2,
"always"
],
"space-in-parens":1,
"space-infix-ops":0,
"space-return-throw-case":1,
"space-unary-ops":1,
"spaced-comment":1,
"wrap-regex":1,
"no-var":0,
"generator-star":0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment