«tslint» 태그된 질문

2
Typescript에서! 멤버를 역 참조 할 때 (느낌표 / 뱅) 연산자?
tslint 규칙의 소스 코드를 볼 때 다음과 같은 진술을 보았습니다. if (node.parent!.kind === ts.SyntaxKind.ObjectLiteralExpression) { return; } !뒤에 연산자를 주목하십시오 node.parent. 흥미 롭습니다! 먼저 현재 설치된 TS (1.5.3) 버전으로 파일을 로컬로 컴파일하려고했습니다. 결과 오류는 뱅의 정확한 위치를 가리 켰습니다. $ tsc --noImplicitAny memberAccessRule.ts noPublicModifierRule.ts(57,24): error TS1005: ')' expected. 다음으로 최신 …
453 typescript  tslint 

6
tslint / codelyzer / ng lint 오류 :“for (… in…) 문은 if 문으로 필터링해야합니다”
보푸라기 오류 메시지 : src / app / detail / edit / edit.component.ts [111, 5] : for (... in ...) 문은 if 문으로 필터링해야합니다 코드 스 니펫 (작동 코드이며 angular.io 양식 유효성 검사 섹션 에서도 사용할 수 있습니다 ) : for (const field in this.formErrors) { // clear previous error …



9
tslint는 console.log에 대한 호출이 허용되지 않는다고 말합니다. 어떻게 허용합니까?
방금 typescript와 함께 create-react-app을 사용하기 시작했습니다. create-react-app my-app --scripts-version=react-scripts-ts 기본 tslint.json 구성은 console.log ()를 허용하지 않습니다. (현재로서는) 어떻게 console.log를 활성화 할 수 있습니까? 이에 대한 문서는 https://palantir.github.io/tslint/rules/no-console/에 있습니다. 그러나 그들은이 줄을 어디에 둘지 말하지 않습니다. "no-console": [true, "log", "error"] 이 tslint.json 구성 파일 구문을 검색하고 찾았 으므로 다음을 시도했습니다. "rules": …

4
구독이 더 이상 사용되지 않음 : 오류 콜백 대신 관찰자를 사용하십시오.
linter를 실행하면 다음과 같이 표시됩니다. subscribe is deprecated: Use an observer instead of an error callback 코드 (angular-cli가있는 angular 7 앱에서) : this.userService.updateUser(data).pipe( tap(() => {bla bla bla}) ).subscribe( this.handleUpdateResponse.bind(this), this.handleError.bind(this) ); 무엇을 어떻게 사용해야하는지 정확히 모르겠습니다 ... 감사!

6
TSLint "문자열 리터럴을 통한 개체 액세스"를 방지하기 위해 코드를 다시 작성하는 방법
저는 TypeScript를 처음 접했으며 다음 코드에서 TSLint 오류 "문자열 리터럴을 통한 개체 액세스가 허용되지 않음"을 피하기 위해 코드를 다시 작성하는 좋은 방법이 있는지 알고 싶습니다. interface ECType { name: string; type: string; elementType?: string; } export var fields: { [structName: string]: Array<ECType>; } = { }; class ECStruct1 { foo: …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.