Posts eslint에 prettier 그리고 typescript 설정하기
Post
Cancel

eslint에 prettier 그리고 typescript 설정하기

Intro

eslint와 prettier를 같이 사용할 때 충돌이 발생하는 경우가 많다. 아래의 설정을 통해서 이 문제를 해결해 보겠다. typescript는 덤이다.

Install

1
npm i -D eslint eslint-config-prettier eslint-plugin-prettier

Setting

  1. npx eslint --init 실행 후 import, react, typescript, airbnb 선택

  2. .eslintrc.js에 아래 코드를 추가

1
2
3
4
extends: [
    'prettier/@typescript-eslint',
    'plugin:prettier/recommended',
  ],
  1. .prettierc을 생성하여 원하는 prettier 설정을 추가하기

Full Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
module.exports = {
  env: {
    browser: true,
    es2021: true,
  },
  extends: [
    "plugin:react/recommended",
    "airbnb",
    "prettier/@typescript-eslint",
    "plugin:prettier/recommended",
  ],
  parser: "@typescript-eslint/parser",
  parserOptions: {
    ecmaFeatures: {
      jsx: true,
    },
    ecmaVersion: 12,
    sourceType: "module",
  },
  plugins: ["react", "@typescript-eslint"],
  rules: {
    "prettier/prettier": [
      "error",
      {
        singleQuote: true,
        tabWidth: 2,
        endOfLine: "auto",
      },
    ],
    "react/jsx-filename-extension": [
      1,
      { extensions: [".js", ".jsx", ".ts", ".tsx"] },
    ],
    "react/react-in-jsx-scope": "off",
    "react/prop-types": "off",
    "jsx-a11y/anchor-is-valid": "off",
    "react/jsx-props-no-spreading": "off",
    "import/no-extraneous-dependencies": "off",
    "jsx-a11y/label-has-associated-control": "off",
    "import/extensions": [
      "error",
      "ignorePackages",
      { js: "never", jsx: "never", ts: "never", tsx: "never", json: "never" },
    ],
  },
  settings: {
    "import/resolver": { node: { extensions: [".js", ".jsx", ".ts", ".tsx"] } },
  },
};
This post is licensed under CC BY 4.0 by the author.