Skip to content

Instantly share code, notes, and snippets.

@yovany-lg
yovany-lg / expo-typescript-eslint-prettier.md
Last active April 12, 2024 17:08
Setting up React Navite: Expo + Typescript + Eslint (Airbnb) + Prettier

Steps to get started with Expo, Typescript, ESLint and Prettier

The first step is to use the Expo CLI to initialize the project. If you don't have the latest version of the Expo CLI tool, (or you don't have it installed) run npm install -g expo-cli.

Now run the following commands in the same order:

  • expo init my-app -t expo-template-blank-typescript
  • npx install-peerdeps --dev eslint-config-airbnb
  • npm i --save-dev @typescript-eslint/parser @typescript-eslint/eslint-plugin
  • npm i --save-dev prettier eslint-config-prettier eslint-plugin-prettier

Create or edit the file .eslintrc.json with the following content:

@Tanvir82
Tanvir82 / index.html
Created October 18, 2018 04:16
particles.js snow
<div id="particles-js"></div>
@onesup
onesup / check.rb
Last active December 12, 2022 07:53
참트루킹의 매공모 - 네이버 카페에 출석체크하기 매크로
# 사전 준비물
# 파이어폭스
# 게코드라이버 - geckodriver
# 루비 - ruby
# 셀레니움을 쓸 수 있게 설정합니다. 브라우저와 코드 사이에서 커뮤니케이션을 해주는 라이브러리입니다.
require "selenium-webdriver"
# 파이어폭스를 셀레니움과 연결해줍니다. 파이어폭스가 다른 브라우저에 비해 오토메이션 속도가 빠른편입니다.
driver = Selenium::WebDriver.for :firefox
@ihoneymon
ihoneymon / how-to-write-by-markdown.md
Last active June 16, 2024 07:48
마크다운(Markdown) 사용법

[공통] 마크다운 markdown 작성법

영어지만, 조금 더 상세하게 마크다운 사용법을 안내하고 있는
"Markdown Guide (https://www.markdownguide.org/)" 를 보시는 것을 추천합니다. ^^

아, 그리고 마크다운만으로 표현이 부족하다고 느끼신다면, HTML 태그를 활용하시는 것도 좋습니다.

1. 마크다운에 관하여