분류 전체보기216 [error] 저장시 eslint 자동으로 fix되지 않음 prettier/prettier 에러 좀 그만 보고 싶다.. setting.json 에 아래를 추가하니 잘 된다. 왜인지 모르겠지만 setting이 초기화 되었던 것 같다. "typescript.format.enable": false, "eslint.alwaysShowStatus": true, "eslint.autoFixOnSave": true, 7stocks.tistory.com/101 ESLint 를 이용한 코드 규격화 ESLint란? 다양한 사람들이 하나의 프로젝트를 작업하다 보면 서로 다른 코딩 규칙들로 스트레스를 받는다. 설령 규칙을 모두 정의 했다고 해도 실제 작업시 실수로 인한 오류들이 많이 발생 할 �� 7stocks.tistory.com 2020. 10. 16. 배열을 객체로, 객체를 배열로 배열을 객체로 Object.assign({}, ['a','b','c']); // {0:"a", 1:"b", 2:"c"} { ...['a', 'b', 'c'] } 객체를 배열로 const obj = {foo : 'bar', baz : 45}; console.log(Object.entries(obj)); supplementary.tistory.com/4 2020. 10. 15. 리눅스 vim 명령어 정리 Esc를 눌러서 명령어 모드로 바꾼다. 그 다음 : 을 누르고 명령어를 입력한다. :w[rite] 저장 // :(콜론)을 누른 다음에 w를 입력한 것입니다. :w # 처럼 숫자(#는 숫자입력을 표시)에 해당하는 파일 이름을 저장할 수 있다. :sav[eas] # // #(숫자를 의미)에 해당하는 파일을 '다른 이름'으로 저장한다. :w file.txt // file.txt 파일로 저장 :w » file.txt // file.tx파일에 덧붙여서 저장 :q // vi 종료 :up // 바뀐 내용만 저장합니다. :x // :upq와 같은 내용입니다. :q! // vi 강제 종료 ZZ // 저장 후 종료 :wq! // 강제 저장 후 종료 :e file.txt file.txt파일을 불러옴 :e 현재 파일을 불러옴.. 2020. 10. 13. [error] We've failed to pass the specified git pre-commit hooks as the `lint` ✖ 2 problems (2 errors, 0 warnings) pre-commit: pre-commit: We've failed to pass the specified git pre-commit hooks as the `lint` pre-commit: hook returned an exit code (1). If you're feeling adventurous you can pre-commit: skip the git pre-commit hooks by adding the following flags to your commit: pre-commit: pre-commit: git commit -n (or --no-verify) pre-commit: pre-commit: This is ill-advised.. 2020. 10. 13. [React 스터디] 7 : 다른 라이브러리와 통합하기 이 가이드는 jQuery와 Backbone의 통합에 중점을 맞추어 일반적인 몇 가지 사용 사례를 살펴봅니다. 동일한 아이디어로 기존 코드와 컴포넌트를 통합하는 데도 적용할 수 있습니다. 주의 이 방법이 가능하다고 해서 React 앱에 대한 최상의 접근 방법임을 의미하지는 않습니다. 가능하다면 React 컴포넌트를 사용하는 것을 권장합니다. React 컴포넌트는 React 애플리케이션에서 더 쉽게 재사용할 수 있으며, 해당 동작과 모양에 대해 더 많은 제어를 제공해 줍니다. DOM 조작 플러그인과 통합하기 DOM에 영향을 미치는 다른 라이브러리와의 충돌을 피하기 위해 React 컴포넌트가 업데이트할 필요가 없는 빈 를 렌더링한다. componentDidMount 내부에서 jQuery 플러그인에 전달하기 위.. 2020. 10. 12. css position : 반응형에서 absolute 초기화 요소에 position: absolute; top, left 값을 줬다가 반응형에서 빼야 할 경우 position: static 사용 static 요소를 일반적인 문서 흐름에 따라 배치합니다. top, right, bottom, left, z-index 속성이 아무런 영향도 주지 않습니다. 기본값입니다. stackoverflow.com/questions/19351151/remove-positionabsolute-attribute-by-adding-css Remove position:absolute attribute by adding css I have a html element with id="#item" I have a UI event that programaticaly alters the css fo.. 2020. 10. 7. TypeScript에서 Style 타입 명시하기 const textStyle: CSSProperties = { textDecoration: none }; {todo.text} const styles = { promAlert: { display: "flex", } as React.CSSProperties, } stackoverflow.com/questions/50960084/how-to-extends-cssproperties-in-react-project How to extends `CSSProperties` in react project I am from the javascript world and am new to typescript. I have a react project written in typescript. I declare an inlin.. 2020. 10. 7. parameter(매개변수)와 argument(인자)의 차이 매개변수는 함수의 선언에서의 변수이며 인자는 함수에게 전달되는 변수의 실제 값 jhnoru.tistory.com/16 두 번째 질문. parameter(매개변수)와 argument(인자)의 차이가 뭔가요? 질문 ...더보기 The general consensus seems to be that it's OK to use these terms interchangeably in a team environment. Except perhaps when you're defining the precise terminology; then you can als.. jhnoru.tistory.com 2020. 10. 6. SVG 파일을 컴포넌트로 만들기 react-svgr.com/playground/ SVGR Transforms SVG into React Components. react-svgr.com 2020. 10. 6. 이전 1 2 3 4 5 6 7 8 ··· 24 다음