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

Commit c9632e1

Browse files
authored
Merge pull request #3 from ContaAzul/no-param-reassign-props
no-param-reassign props false
2 parents 9837c74 + dd04111 commit c9632e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = {
1212
"import/prefer-default-export" : 0,
1313
"radix" : [ 2, "as-needed" ],
1414
"class-methods-use-this" : 0,
15-
"no-param-reassign" : 1,
15+
"no-param-reassign" : ["error", { "props": false }],
1616
"no-console": ["warn", { "allow": ["error"] }],
1717
"no-use-before-define": ["error", { "functions": false, "classes": true }],
1818
"prefer-destructuring": ["warn", {"object": true, "array": true}],

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-contaazul",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "Configs Linter ContaAzul",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)