소스 검색

enable biome import sort on save

Futa Arai 1 년 전
부모
커밋
e131c4f61d
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      .vscode/settings.json
  2. 1 1
      packages/remark-lsx/src/client/utils/page-node.ts

+ 1 - 0
.vscode/settings.json

@@ -14,6 +14,7 @@
   "editor.codeActionsOnSave": {
     "source.fixAll.eslint": "explicit",
     "source.fixAll.biome": "explicit",
+    "source.organizeImports.biome": "explicit",
     "source.fixAll.markdownlint": "explicit",
     "source.fixAll.stylelint": "explicit"
   },

+ 1 - 1
packages/remark-lsx/src/client/utils/page-node.ts

@@ -1,6 +1,6 @@
 import type { IPageHasId } from '@growi/core';
-import { getParentPath as getParentPathCore } from '@growi/core/dist/utils/path-utils';
 import type { ParseRangeResult } from '@growi/core/dist/remark-plugins';
+import { getParentPath as getParentPathCore } from '@growi/core/dist/utils/path-utils';
 import { removeTrailingSlash } from '@growi/core/dist/utils/path-utils';
 
 import type { PageNode } from '../../interfaces/page-node';