Skip to content

Instantly share code, notes, and snippets.

@lsei
Last active August 30, 2018 16:47
Show Gist options
  • Save lsei/c875cea40595b2e9e1e09dc439f27a51 to your computer and use it in GitHub Desktop.
Save lsei/c875cea40595b2e9e1e09dc439f27a51 to your computer and use it in GitHub Desktop.
{
"extends": "airbnb",
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": false,
"codeFrame": false
},
"rules": {
"no-use-before-define": "off",
"no-console": "off",
"keyword-spacing": "off",
"react/jsx-filename-extension": "off",
"react/jsx-wrap-multilines": "off",
"react/forbid-prop-types": "off",
"arrow-parens": ["error", "as-needed"],
"max-len": ["error", {"code": 120}],
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment