We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ddc3fc commit 3e91276Copy full SHA for 3e91276
1 file changed
src/treeProvider.ts
@@ -18,17 +18,6 @@ import { normalizePath } from './fsUtils';
18
import { API as GitAPI, Repository as GitAPIRepository } from './typings/git';
19
import { Octokit } from '@octokit/rest';
20
21
-type SortOrder = 'name' | 'path' | 'status' | 'recentlyModified';
22
-
23
-const STATUS_SORT_ORDER: { [key: string]: number } = {
24
- 'M': 0, // Modified
25
- 'A': 1, // Added
26
- 'D': 2, // Deleted
27
- 'R': 3, // Renamed
28
- 'C': 4, // Conflict
29
- 'U': 5, // Untracked
30
- 'T': 6 // Type change
31
-};
32
33
type SortOrder = 'name' | 'path' | 'status' | 'recentlyModified';
34
0 commit comments