Skip to content

Instantly share code, notes, and snippets.

@sharkyak
Last active August 9, 2017 09:41
Show Gist options
  • Save sharkyak/ce9a2cab17caabccdc4031eccf9449ed to your computer and use it in GitHub Desktop.
Save sharkyak/ce9a2cab17caabccdc4031eccf9449ed to your computer and use it in GitHub Desktop.
eslint config file
module.exports = {
"extends": "airbnb-base",
"rules": {
"linebreak-style": ["error", "windows"],
"semi": ["error", "never"],
"comma-dangle": ["error", "never"],
"arrow-parens": ["error", "as-needed"],
"no-use-before-define": 0,
"no-mixed-operators": 0,
"max-len": 0,
"no-plusplus": 0,
"no-console": 0
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment