Skip to content

Commit 6652d1f

Browse files
authored
chore(lint): revert no-access-missing-member restriction (#130)
fixed in codelyzer 2.0.0-beta.2 - mgechev/codelyzer@20ce61a
1 parent d978f0b commit 6652d1f

File tree

6 files changed

+6
-10
lines changed

6 files changed

+6
-10
lines changed

app/ui-category/slider/basic-slider/basic-slider.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// tslint:disable:no-access-missing-member
21
import { Component } from "@angular/core";
32

43
@Component({

app/ui-category/switch/disable-switch/disable-switch.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<!-- >> switch-view-html -->
44
<GridLayout rows="auto auto auto auto" columns="* *" class="m-5">
55
<Label class="h3 m-15" [text]="sw1.isEnabled ? 'enabled' : 'disabled'" textWrap="true" row="0" col="0"></Label>
6-
<Switch class="m-15" #sw1 checked="true" (checkedChange)="firstSwitchState=sw1.checked" row="0" col="1"></Switch>
6+
<Switch class="m-15" #sw1 checked="true" row="0" col="1"></Switch>
77
<Label class="h3 m-15" [text]="sw2.isEnabled ? 'enabled' : 'disabled'" textWrap="true" row="1" col="0"></Label>
8-
<Switch class="m-15" #sw2 checked="false" (checkedChange)="secondSwitchState=sw2.checked" row="1" col="1"></Switch>
8+
<Switch class="m-15" #sw2 checked="false" row="1" col="1"></Switch>
99
<Label class="h3 m-15" [text]="sw3.isEnabled ? 'enabled' : 'disabled'" textWrap="true" row="2" col="0"></Label>
10-
<Switch class="m-15" #sw3 checked="true" (checkedChange)="thirdSwitchState=sw3.checked" row="2" col="1"></Switch>
10+
<Switch class="m-15" #sw3 checked="true" row="2" col="1"></Switch>
1111
<Button class="btn btn-primary btn-active" text="Disable switches" (tap)="onTap()" row="3" col="0" colSpan="2" horizontalAlignment="stretch"></Button>
1212
</GridLayout>
1313
<!-- << switch-view-html -->

app/ui-category/switch/disable-switch/disable-switch.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// tslint:disable:no-access-missing-member
21
// >> disable-switch-code
32
import { Component, ViewChild, ElementRef } from "@angular/core";
43
import { Switch } from "ui/switch";

app/ui-category/switch/styling-switch/styling-switch.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// tslint:disable:no-access-missing-member
21
import { Component } from "@angular/core";
32

43
@Component({

app/ui-category/text-field/text-field-binding/text-field-binding.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// tslint:disable:no-access-missing-member
21
// >> textfield-binding-show-result
32
import { Component } from "@angular/core";
43

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"babel-traverse": "6.11.4",
5454
"babel-types": "6.11.1",
5555
"babylon": "6.8.4",
56-
"codelyzer": "^2.0.0-beta.1",
56+
"codelyzer": "~2.0.0-beta.3",
5757
"copy-webpack-plugin": "~3.0.1",
5858
"css-loader": "~0.26.0",
5959
"extract-text-webpack-plugin": "~2.0.0-beta.4",
@@ -69,7 +69,7 @@
6969
"rimraf": "^2.5.3",
7070
"tar.gz": "^1.0.5",
7171
"tns-platform-declarations": "^2.4.0",
72-
"tslint": "^4.0.2",
72+
"tslint": "~4.0.2",
7373
"typescript": "~2.0.3",
7474
"webpack": "~2.1.0-beta.27",
7575
"zone.js": "~0.6.21"
@@ -103,4 +103,4 @@
103103
"build-android-bundle": "tns build android --bundle --disable-npm-install",
104104
"build-ios-bundle": "tns build ios --bundle --disable-npm-install"
105105
}
106-
}
106+
}

0 commit comments

Comments
 (0)