Skip to content
This repository has been archived by the owner on Jul 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #3 from ContaAzul/no-param-reassign-props
Browse files Browse the repository at this point in the history
no-param-reassign props false
  • Loading branch information
fsblemos authored Apr 10, 2018
2 parents 9837c74 + dd04111 commit c9632e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
"import/prefer-default-export" : 0,
"radix" : [ 2, "as-needed" ],
"class-methods-use-this" : 0,
"no-param-reassign" : 1,
"no-param-reassign" : ["error", { "props": false }],
"no-console": ["warn", { "allow": ["error"] }],
"no-use-before-define": ["error", { "functions": false, "classes": true }],
"prefer-destructuring": ["warn", {"object": true, "array": true}],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-contaazul",
"version": "0.0.3",
"version": "0.0.4",
"description": "Configs Linter ContaAzul",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit c9632e1

Please sign in to comment.