De-lint a few more files

& remove them from the ignored list
This commit is contained in:
David Baker 2019-01-11 13:54:11 +00:00
parent e0bc0494fa
commit fe4778b28b
4 changed files with 8 additions and 7 deletions

View file

@ -41,8 +41,12 @@ export default class AutocompleteProvider {
/**
* Of the matched commands in the query, returns the first that contains or is contained by the selection, or null.
* @param {string} query The query string
* @param {SelectionRange} selection Selection to search
* @param {boolean} force True if the user is forcing completion
* @return {object} { command, range } where both onjects fields are null if no match
*/
getCurrentCommand(query: string, selection: SelectionRange, force: boolean = false): ?string {
getCurrentCommand(query: string, selection: SelectionRange, force: boolean = false) {
let commandRegex = this.commandRegex;
if (force && this.shouldForceComplete()) {