Fix linting
parent
68ca503a76
commit
3bb7bd0e1d
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "opt-cc",
|
||||
"version": "1.7.2",
|
||||
"version": "1.8.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -12,8 +12,10 @@ import {FormGroup, NgForm} from '@angular/forms';
|
|||
})
|
||||
export class ShowErrorComponent {
|
||||
|
||||
// tslint:disable-next-line:no-input-rename
|
||||
@Input('controlPath') controlPath;
|
||||
|
||||
// tslint:disable-next-line:no-input-rename
|
||||
@Input('displayName') displayName = '';
|
||||
|
||||
private form: FormGroup;
|
||||
|
|
|
@ -10,7 +10,7 @@ export const CSSHelpers = {
|
|||
|
||||
export const UIHelpers = {
|
||||
toggleReleaseButton: (currentVal, group) => {
|
||||
if (currentVal == group.value) {
|
||||
if (currentVal === group.value) {
|
||||
group.value = '';
|
||||
return '';
|
||||
} else {
|
||||
|
|
|
@ -88,7 +88,6 @@
|
|||
"variable-declaration": "nospace"
|
||||
}
|
||||
],
|
||||
"typeof-compare": true,
|
||||
"unified-signatures": true,
|
||||
"variable-name": false,
|
||||
"whitespace": [
|
||||
|
@ -119,9 +118,6 @@
|
|||
"use-life-cycle-interface": true,
|
||||
"use-pipe-transform-interface": true,
|
||||
"component-class-suffix": true,
|
||||
"directive-class-suffix": true,
|
||||
"no-access-missing-member": true,
|
||||
"templates-use-public": true,
|
||||
"invoke-injectable": true
|
||||
"directive-class-suffix": true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue