Skip to content

Instantly share code, notes, and snippets.

@mubaidr
Created July 7, 2017 03:42
Show Gist options
  • Save mubaidr/77e9062ae266402541bd9069cc7a16fd to your computer and use it in GitHub Desktop.
Save mubaidr/77e9062ae266402541bd9069cc7a16fd to your computer and use it in GitHub Desktop.
Eslint config
{
"root": true,
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"extends": [
"standard",
"plugin:vue/recommended"
],
"settings": {
"html/html-extensions": [
".html"
],
"html/report-bad-indent": "error"
},
"plugins": [
"html"
],
"rules": {
"no-console": "warn",
"space-before-function-paren": "error",
"no-extra-semi": "error",
"no-unused-vars": "error",
"no-multiple-empty-lines": [2, {
"max": 1
}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment