File tree Expand file tree Collapse file tree 3 files changed +591
-1226
lines changed Expand file tree Collapse file tree 3 files changed +591
-1226
lines changed Original file line number Diff line number Diff line change 3131 "@types/chai" : " ^4.2.7" ,
3232 "@types/mocha" : " ^9.1.1" ,
3333 "@types/node" : " ^18.7.11" ,
34+ "@typescript-eslint/eslint-plugin" : " ^5.34.0" ,
35+ "@typescript-eslint/parser" : " ^5.34.0" ,
3436 "chai" : " ^4.2.0" ,
37+ "eslint" : " ^8.22.0" ,
3538 "mocha" : " ^10.0.0" ,
3639 "ts-node" : " ^10.9.1" ,
3740 "typescript" : " ^4.7.4" ,
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ import { Fruit } from './fruit';
44import { expect } from 'chai' ;
55import 'mocha' ;
66
7- export const EOL = " \r\n" ;
7+ export const EOL = ' \r\n' ;
88
99describe ( 'String.IsNullOrWhitespace' , ( ) => {
1010
1111 it ( 'should return true on null string' , ( ) => {
1212 const teststring : string | null = null ;
13- let result = String . IsNullOrWhiteSpace ( teststring ! ) ;
13+ let result = String . IsNullOrWhiteSpace ( teststring ) ;
1414 expect ( result ) . to . equal ( true ) ;
1515 result = String . isNullOrWhiteSpace ( teststring ) ;
1616 expect ( result ) . to . equal ( true ) ;
You can’t perform that action at this time.
0 commit comments