Skip to content

Instantly share code, notes, and snippets.

@freiksenet
Created August 4, 2015 08:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freiksenet/4646c7216167fd139d5d to your computer and use it in GitHub Desktop.
Save freiksenet/4646c7216167fd139d5d to your computer and use it in GitHub Desktop.
{
"parser": "babel-eslint",
"env": {
"node": true,
"mocha": true
},
"plugins": [
"arrow-function"
],
"rules": {
"arrow-function/no-condition": 2,
"arrow-function/paren": 2,
"arrow-function/return-shorthand": [2, "only-object"],
"brace-style": 2,
"camelcase": [2, {"properties": "never"}],
"comma-dangle": [2, "always-multiline"],
"comma-style": 2,
"dot-notation": 2,
"eol-last": 2,
"eqeqeq": 2,
"indent": [2, 2],
"key-spacing": 2,
"max-len": [2, 80, 2],
"no-array-constructor": 2,
"no-dupe-keys": 2,
"new-cap": [2, {
"capIsNewExceptions": [
"List",
"OrderedMap",
"Map",
"Set",
"OrderedSet",
"Stack",
"Range",
"Repeat",
"Record",
"Seq",
"KeyedSeq",
"IndexedSeq",
"SetSeq",
"Iterable",
"KeyedIterable",
"IndexedIterable",
"SetIterable",
"Collection",
"KeyedCollection",
"IndexedCollection",
"SetCollection"
]
}],
"no-eq-null": 2,
"no-extra-boolean-cast": 2,
"no-extra-parens": [2, "functions"],
"no-multi-spaces": 2,
"no-multi-str": 2,
"no-new-object": 2,
"no-shadow-restricted-names": 2,
"no-spaced-func": 2,
"no-unused-vars": 2,
"no-use-before-define": 0,
"no-var": 2,
"object-shorthand": 2,
"one-var": [2, "never"],
"prefer-const": 2,
"quote-props": [2, "as-needed"],
"quotes": [2, "single"],
"semi-spacing": 2,
"semi": [2, "always"],
"space-before-blocks": 2,
"space-before-function-paren": [2, "never"],
"space-infix-ops": 2,
"spaced-comment": 2,
"strict": 0,
"use-isnan": 2,
"valid-jsdoc": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment