Disable the confirmation dialog when deleting files in the VS Code explorer to streamline the development workflow and reduce friction during file management operations.
6 lines
163 B
JavaScript
6 lines
163 B
JavaScript
'use strict'
|
|
|
|
const compareBuild = require('./compare-build')
|
|
const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose))
|
|
module.exports = rsort
|