Skip to content

Instantly share code, notes, and snippets.

@isaacl
Created March 29, 2016 17:47
Show Gist options
  • Save isaacl/ba140458c45eb99f8a155400584ebed3 to your computer and use it in GitHub Desktop.
Save isaacl/ba140458c45eb99f8a155400584ebed3 to your computer and use it in GitHub Desktop.
{
"extends": "airbnb",
"rules": {
"comma-dangle": 0,
"react/no-multi-comp": [1, { "ignoreStateless": true }],
"id-length": 0,
"indent": [1, 4, {"SwitchCase": 1}],
"max-len": 0,
"no-nested-ternary": 0,
"object-curly-spacing": 0,
"react/jsx-indent-props": [1, 4],
"react/prefer-stateless-function": 0,
"new-cap": [2, {"capIsNewExceptions": [
"App",
"DataTable",
"Immutable.Map",
"Immutable.Set",
"Immutable.List",
"chai.Should",
"$.Deferred"
]}],
"no-else-return": 0,
"no-unused-vars": [1, {"vars": "local", "args": "none"}],
"space-in-parens": 1
},
"env": {
"mocha": true
},
"globals": {
"ddc": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true,
"impliedStrict": true,
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment