@@ -19,23 +19,20 @@ const VALID_SETTINGS: Settings = {
1919const INVALID_SETTINGS_LIST : Partial < Settings > [ ] = [
2020 { apiURL : 'https://api.scaleway.com/' } ,
2121 { apiURL : 'ftp://api.scaleway.com' } ,
22- // @ts -ignore Unknown zone
2322 { defaultZone : 'fr-par-0' } ,
24- // @ts -ignore Unknown zone
2523 { defaultZone : 'fr-par' } ,
26- // @ts -ignore Unknown region
2724 { defaultRegion : 'fr-par-1' } ,
28- // @ts -ignore Unknown client type
25+ // @ts -expect-error Unknown client type
2926 { httpClient : 'str-client' } ,
3027 { defaultOrganizationId : '' } ,
3128 { defaultOrganizationId : 'not-a-uuid-v4' } ,
3229 { defaultProjectId : '' } ,
3330 { defaultProjectId : 'not-a-uuid-v4' } ,
3431 { defaultPageSize : 0 } ,
3532 { defaultPageSize : - 1 } ,
36- // @ts -ignore
33+ // @ts -expect-error Wrong type
3734 { defaultPageSize : '42' } ,
38- // @ts -ignore Unknown user agent type
35+ // @ts -expect-error Unknown user agent type
3936 { userAgent : null } ,
4037]
4138/* eslint-enable @typescript-eslint/ban-ts-comment */
0 commit comments