Linting app

This commit is contained in:
David Négrier
2020-09-29 16:12:17 +02:00
parent b485c9bf46
commit 432b4a0e85
7 changed files with 46 additions and 42 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { ReadStream } from 'fs';
function extend(who: any, from: any, overwrite = true) {
function extend(who: any, from: any, overwrite = true) { // eslint-disable-line @typescript-eslint/no-explicit-any
const ownProps = Object.getOwnPropertyNames(Object.getPrototypeOf(from)).concat(
Object.keys(from)
);