Skip to content

Instantly share code, notes, and snippets.

@macghriogair
Last active August 24, 2017 11:47
Show Gist options
  • Save macghriogair/2183b59b63247638af45695de23ad059 to your computer and use it in GitHub Desktop.
Save macghriogair/2183b59b63247638af45695de23ad059 to your computer and use it in GitHub Desktop.
eslint config
{
"plugins": [
"jasmine",
"vue"
],
"env": {
"browser": true,
"es6": true,
"jasmine": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
2
],
"quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
"linebreak-style": [
"error",
"unix"
],
"semi": [
"warn",
"never"
],
"no-console": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment