Skip to content

Commit

Permalink
Merge pull request #6 from conversation/use-agreed-comma-dangle-config
Browse files Browse the repository at this point in the history
Use agreed comma dangle configuration
  • Loading branch information
markcipolla committed Apr 30, 2018
2 parents dffcbc4 + 4305c3f commit a778e78
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
module.exports = {
"extends": "airbnb",
"rules": {
"comma-dangle": "off",
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "never",
"exports": "never",
"functions": "ignore"
}],
"import/extensions": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
Expand Down

0 comments on commit a778e78

Please sign in to comment.