Run prettier

This commit is contained in:
Alex Dima 2021-11-15 09:37:13 +01:00
parent a66f20ee2e
commit edb439d4f6
No known key found for this signature in database
GPG key ID: 39563C1504FDD0C9
14 changed files with 998 additions and 982 deletions

View file

@ -9,8 +9,7 @@ import { languages } from '../fillers/monaco-editor-core';
export function createTokenizationSupport(supportComments: boolean): languages.TokensProvider {
return {
getInitialState: () => new JSONState(null, null, false, null),
tokenize: (line, state?) =>
tokenize(supportComments, line, <JSONState>state)
tokenize: (line, state?) => tokenize(supportComments, line, <JSONState>state)
};
}