ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • vscode에서 eslint룰대로 order정렬을 하고 싶을때
    eslint 2024. 3. 12. 17:05
    728x90
    'import/order': [
        'error',
        {
            groups: [
                'builtin',
                'external',
                'internal',
                ['sibling', 'parent'],
                'index',
                'unknown',
            ],
            'newlines-between': 'always',
            alphabetize: {
                order: 'asc',
                caseInsensitive: true,
            },
        },
    ],

     

    import/order룰대로 자동 정렬 되지 않고 vscode상에서 에러표시가 난다.

     

     

    .vscode/settings.json

    {
    	...
        
    	"editor.codeActionsOnSave": {
    		"source.fixAll.eslint": "explicit"
    	}
    }

     

    해당 설정을 하게 되면 저장 할때 자동으로 정렬해준다!
    728x90

    'eslint' 카테고리의 다른 글

    eslint import/no-unresolved tsconfig.json paths 인식 오류  (0) 2024.01.19
Designed by Tistory.