move code to mean linting (#7873)

This commit is contained in:
Anthony Dresser
2019-10-21 17:56:58 -07:00
committed by GitHub
parent 8aa8dc29a1
commit 1a864584b6
8 changed files with 91 additions and 28 deletions

View File

@@ -11,6 +11,13 @@ export const MANIFEST_CACHE_FOLDER = 'CachedExtensions';
export const USER_MANIFEST_CACHE_FILE = 'user';
export const BUILTIN_MANIFEST_CACHE_FILE = 'builtin';
export const ExtensionsPolicyKey = 'extensions.extensionsPolicy'; // {{SQL CARBON EDIT}} start
export enum ExtensionsPolicy {
allowAll = 'allowAll',
allowNone = 'allowNone',
allowMicrosoft = 'allowMicrosoft'
} // {{SQL CARBON EDIT}} - End
export interface ICommand {
command: string;
title: string;