Auto-fix lint errors

This commit is contained in:
J. Ryan Stinnett 2021-06-29 13:11:58 +01:00
parent 4c5720a573
commit ae0a8b8da4
625 changed files with 3170 additions and 3232 deletions

View file

@ -221,7 +221,7 @@ export default class EditorModel {
}
private setActivePart(pos: DocumentPosition, canOpenAutoComplete: boolean) {
const {index} = pos;
const { index } = pos;
const part = this._parts[index];
if (part) {
if (index !== this.activePartIdx) {
@ -250,7 +250,7 @@ export default class EditorModel {
return Promise.resolve();
}
private onAutoComplete = ({replaceParts, close}: ICallback) => {
private onAutoComplete = ({ replaceParts, close }: ICallback) => {
let pos;
if (replaceParts) {
this._parts.splice(this.autoCompletePartIdx, this.autoCompletePartCount, ...replaceParts);
@ -295,7 +295,7 @@ export default class EditorModel {
* usually because of non-editable parts that can only be removed in their entirety.
*/
removeText(pos: IPosition, len: number) {
let {index, offset} = pos;
let { index, offset } = pos;
let removedOffsetDecrease = 0;
while (len > 0) {
// part might be undefined here
@ -357,8 +357,8 @@ export default class EditorModel {
* This can be more than the length of `str` when crossing non-editable parts, which are skipped.
*/
private addText(pos: IPosition, str: string, inputType: string) {
let {index} = pos;
const {offset} = pos;
let { index } = pos;
const { offset } = pos;
let addLen = str.length;
const part = this._parts[index];
if (part) {