"lint:html": "htmllint src/app/**/*.html && html-linter --config html-linter.config.json",
"lint:tsc": "tsc -p src/tsconfig.app.json --noEmit && tsc -p tsconfig.spec.json --noEmit && tsc -p cypress/tsconfig.json --noEmit",
"lint:scss": "stylelint '**/*.scss'",
- "lint": "run-p --continue-on-error --aggregate-output lint:*",
+ "lint": "run-p -csl --aggregate-output lint:*",
"fix:prettier": "prettier --write \"{src,cypress}/**/*.{ts,scss}\"",
"fix:tslint": "npm run lint:tslint -- --fix",
"fix:scss": "stylelint '**/*.scss' --fix",
"fixmod": "pretty-quick --pattern \"{src,cypress}/**/*.{ts,scss}\" --branch HEAD",
- "fix": "run-p --continue-on-error --aggregate-output fix:*",
+ "fix": "run-p -csl --aggregate-output fix:*",
"fix:audit": "npx npm-force-resolutions",
"compodoc": "compodoc",
"doc-build": "compodoc -p src/tsconfig.app.json",
"comment-format": [true, "check-space"],
"curly": true,
"deprecation": {
- "severity": "warning"
+ "severity": "error"
},
"eofline": true,
"forin": true,
"no-trailing-whitespace": true,
"no-unnecessary-initializer": true,
"no-unused-expression": true,
- "no-use-before-declare": true,
"no-var-keyword": true,
"object-literal-sort-keys": false,
"one-line": [true, "check-open-brace", "check-catch", "check-else", "check-whitespace"],