in lib/decorators.js [14:22]
_updateFileContent(filePath, transformations, options) {
const { force, ...restOptions } = { force: false, ...options };
super._updateFileContent(filePath, transformations, restOptions);
if (force === true) {
this.conflicter._registerForceUpdate(filePath);
}
}