[ FLUTTER ] non_constant_identifier_names 1. pubspec.yaml 작성 dev_dependencies: effective_dart: ^1.2.0 2. analysis_options.yaml 파일 생성 linter: rules: non_constant_identifier_names : false App/Flutter HEON.D 2021.06.28
[ TypeScript ] TSLint expected call-signature: 'underline' to have a typedef (typedef) expected call-signature: 'underline' to have a typedef (typedef) 해결법 : any, : void 등 리턴 밸류 형 지정 할 것 tslint.json 파일 설정 변경 "typedef": [ false, "call-signature" ], FE/Typescript HEON.D 2021.04.10