Fixing eslint ignore broken by Prettier
This commit is contained in:
parent
10c3d6dee2
commit
3e464580ea
@ -10,8 +10,8 @@
|
|||||||
"runprod": "node --max-old-space-size=4096 ./dist/server.js",
|
"runprod": "node --max-old-space-size=4096 ./dist/server.js",
|
||||||
"profile": "tsc && node --prof ./dist/server.js",
|
"profile": "tsc && node --prof ./dist/server.js",
|
||||||
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
|
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
|
||||||
"lint": "node_modules/.bin/eslint src/ . --ext .ts",
|
"lint": "DEBUG= node_modules/.bin/eslint src/ . --ext .ts",
|
||||||
"fix": "node_modules/.bin/eslint --fix src/ . --ext .ts",
|
"fix": "DEBUG= node_modules/.bin/eslint --fix src/ . --ext .ts",
|
||||||
"precommit": "lint-staged",
|
"precommit": "lint-staged",
|
||||||
"pretty": "yarn prettier --write 'src/**/*.{ts,tsx}'",
|
"pretty": "yarn prettier --write 'src/**/*.{ts,tsx}'",
|
||||||
"pretty-check": "yarn prettier --check 'src/**/*.{ts,tsx}'"
|
"pretty-check": "yarn prettier --check 'src/**/*.{ts,tsx}'"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { ReadStream } from "fs";
|
import { ReadStream } from "fs";
|
||||||
|
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
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));
|
const ownProps = Object.getOwnPropertyNames(Object.getPrototypeOf(from)).concat(Object.keys(from));
|
||||||
ownProps.forEach((prop) => {
|
ownProps.forEach((prop) => {
|
||||||
if (prop === "constructor" || from[prop] === undefined) return;
|
if (prop === "constructor" || from[prop] === undefined) return;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { ReadStream } from "fs";
|
import { ReadStream } from "fs";
|
||||||
|
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
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));
|
const ownProps = Object.getOwnPropertyNames(Object.getPrototypeOf(from)).concat(Object.keys(from));
|
||||||
ownProps.forEach((prop) => {
|
ownProps.forEach((prop) => {
|
||||||
if (prop === "constructor" || from[prop] === undefined) return;
|
if (prop === "constructor" || from[prop] === undefined) return;
|
||||||
|
Loading…
Reference in New Issue
Block a user