Climeeting / climeet-fe

https://www.cli-meet.com/
2 stars 2 forks source link

eslint stylistic 적용 #67

Closed piggmme closed 1 month ago

piggmme commented 3 months ago

https://eslint.style/

스크린샷 2024-06-20 오후 5 14 03
piggmme commented 3 months ago

VSC 에서 아래 설정값 필요 https://stackoverflow.com/questions/67754305/setting-eslint-as-formatter-in-vscode-settings-json-what-is-the-proper-way

piggmme commented 3 months ago

stylistic 적용하는 법

  1. 설치

    pnpm i -D @stylistic/eslint-plugin
  2. eslintrc.cjs 수정

    module.exports = {
    // ....
    plugins: [
    'react-refresh',
    '@stylistic',
    ],
    rules: {
    // 여기에 룰 추가해서 하나씩 설정해야함...
    'react-refresh/only-export-components': 'off',
    '@stylistic/indent': ['error', 2],
    '@stylistic/quotes': ['error', 'single'],
    '@stylistic/semi': ['error', 'never'],
    '@stylistic/arrow-spacing': ['error', 'never'],
    },
    }