Skip to content

Instantly share code, notes, and snippets.

@nulpatrol
Created February 5, 2018 19:09
Show Gist options
  • Save nulpatrol/a247922c05e85c568ff58189490860c4 to your computer and use it in GitHub Desktop.
Save nulpatrol/a247922c05e85c568ff58189490860c4 to your computer and use it in GitHub Desktop.
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
"sourceType": "module",
},
"env": {
"browser": true,
},
'extends': [
'airbnb-base',
],
"rules": {
"no-param-reassign": 0,
"no-multi-assign": 0,
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": "off",
"import/extensions": ["error", "always", {
"js": "never",
"vue": "never"
}],
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment