code linting

This commit is contained in:
vsrs 2020-07-02 22:08:33 +03:00
parent 271abb7bc4
commit 611fad275f
3 changed files with 32 additions and 32 deletions

View file

@ -5,7 +5,7 @@ export type UpdatesChannel = "stable" | "nightly";
export const NIGHTLY_TAG = "nightly";
export type RunnableEnvCfg = undefined | Record<string, string> | { mask?: string, env: Record<string, string>; }[];
export type RunnableEnvCfg = undefined | Record<string, string> | { mask?: string; env: Record<string, string> }[];
export class Config {
readonly extensionId = "matklad.rust-analyzer";