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:
		@@ -2,6 +2,7 @@
 | 
				
			|||||||
    "extends": ["@0x/tslint-config"],
 | 
					    "extends": ["@0x/tslint-config"],
 | 
				
			||||||
    "rules": {
 | 
					    "rules": {
 | 
				
			||||||
        "custom-no-magic-numbers": false,
 | 
					        "custom-no-magic-numbers": false,
 | 
				
			||||||
        "semicolon": [true, "always", "ignore-bound-class-methods"]
 | 
					        "semicolon": [true, "always", "ignore-bound-class-methods"],
 | 
				
			||||||
 | 
					        "max-classes-per-file": false
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user