Allow more than 1 class per file

Felt silly that refactoring a component defined as a function to a class with a helper function caused a tslint violation
This commit is contained in:
Steve Klebanoff
2018-10-18 15:28:24 -07:00
parent 8ff5e19269
commit a42347a776

View File

@@ -2,6 +2,7 @@
"extends": ["@0x/tslint-config"],
"rules": {
"custom-no-magic-numbers": false,
"semicolon": [true, "always", "ignore-bound-class-methods"]
"semicolon": [true, "always", "ignore-bound-class-methods"],
"max-classes-per-file": false
}
}