chore(lint): enable semicolon and variable-name tslint checks

This commit is contained in:
Alex Eagle
2016-05-26 13:33:53 -07:00
parent 9096481744
commit ef0c32512c
13 changed files with 30 additions and 22 deletions
@@ -12,7 +12,7 @@ import {bootstrap} from '@angular/platform-browser';
</div>`
})
export class JsonPipeExample {
object: Object = {foo: 'bar', baz: 'qux', nested: {xyz: 3, numbers: [1, 2, 3, 4, 5]}}
object: Object = {foo: 'bar', baz: 'qux', nested: {xyz: 3, numbers: [1, 2, 3, 4, 5]}};
}
// #enddocregion
@@ -33,7 +33,7 @@ describe('another component',
// #enddocregion
// #docregion xdescribe
xdescribe('some component', () => { it('has a test', () => {throw 'This test will not run.'}); });
xdescribe('some component', () => { it('has a test', () => {throw 'This test will not run.';}); });
describe('another component', () => {
it('also has a test', () => {
// This test will run.