Skip to content

Instantly share code, notes, and snippets.

@jeromedalbert
Created March 3, 2016 04:41
Show Gist options
  • Save jeromedalbert/e08de92e38eb0f4cfc7e to your computer and use it in GitHub Desktop.
Save jeromedalbert/e08de92e38eb0f4cfc7e to your computer and use it in GitHub Desktop.
module.exports = {
"env": {
"browser": true,
"es6": true,
"jquery": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
2,
2
],
"linebreak-style": [
2,
"unix"
],
"quotes": [
2,
"single"
],
"semi": [
2,
"always"
]
},
"processors": {
".erb": {
preprocess: function(text, filename) {
return [];
}
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment