Last active
September 27, 2018 05:19
-
-
Save nandiheath/019a005f77671e807a431cbbcbf6d9be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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