Skip to content

Commit

Permalink
fix(eslint): move eslint rules from file to config
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTelanie committed Aug 21, 2019
1 parent 48dae87 commit f42b717
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
"mocha": true
},
"rules": {
"comma-dangle": ["error", "only-multiline"]
"comma-dangle": ["error", "only-multiline"],
"class-methods-use-this": "off",
"no-unused-vars": "off",
"no-dupe-keys": "off",
"func-names": "off",
"no-param-reassign": "off",
"no-console": "off",
"getter-return": "off",
"new-cap": "off",
"no-prototype-builtins": "off"
}
}

0 comments on commit f42b717

Please sign in to comment.