Skip to content

Instantly share code, notes, and snippets.

@nandiheath
Last active September 27, 2018 05:19
Show Gist options
  • Save nandiheath/019a005f77671e807a431cbbcbf6d9be to your computer and use it in GitHub Desktop.
Save nandiheath/019a005f77671e807a431cbbcbf6d9be to your computer and use it in GitHub Desktop.
module.exports = {
"extends": "airbnb-base",
"rules": {
"indent": ["error", 4, { "SwitchCase": 1 }],
'no-restricted-syntax': [
'error',
'LabeledStatement',
'WithStatement',
],
'no-bitwise' : 0,
'no-await-in-loop' : 0,
'max-len': 0,
'no-plusplus' :0,
'camelcase' :0,
'no-continue' : 0,
'comma-dangle': [
'error',
'only-multiline',
{
"functions": "never"
}],
'no-param-reassign': 0,
},
"plugins": [
"import"
],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment