Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- use duplicate style definitions
- "scss.lint.duplicateProperties": "ignore",
- // Не используйте пустые наборы правил
- "scss.lint.emptyRules": "warning",
- // Операторы импорта не загружаются параллельно
- "scss.lint.importStatement": "ignore",
- // Не используйте ширину или высоту при использовании отступов или границы
- "scss.lint.boxModel": "ignore",
- // The universal selector (*) is known to be slow
- "scss.lint.universalSelector": "ignore",
- // No unit for zero needed
- "scss.lint.zeroUnits": "ignore",
- // @font-face rule must define 'src' and 'font-family' properties
- "scss.lint.fontFaceProperties": "warning",
- // Hex colors must consist of three or six hex numbers
- "scss.lint.hexColorLength": "error",
- // Invalid number of parameters
- "scss.lint.argumentsInColorFunction": "error",
- // Unknown property.
- "scss.lint.unknownProperties": "warning",
- // IE hacks are only necessary when supporting IE7 and older
- "scss.lint.ieHack": "ignore",
- // Unknown vendor specific property.
- "scss.lint.unknownVendorSpecificProperties": "ignore",
- // Property is ignored due to the display. E.g. with 'display: inline', the width, height, margin-top, margin-bottom, and float properties have no effect
- "scss.lint.propertyIgnoredDueToDisplay": "warning",
- // Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
- "scss.lint.important": "ignore",
- // Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
- "scss.lint.float": "ignore",
- // Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
- "scss.lint.idSelector": "ignore",
- // LESS
- // Controls LESS validation and problem severities.
- // Enables or disables all validations
- "less.validate": true,
- // When using a vendor-specific prefix make sure to also include all other vendor-specific properties
- "less.lint.compatibleVendorPrefixes": "ignore",
- // When using a vendor-specific prefix also include the standard property
- "less.lint.vendorPrefix": "warning",
- // Do not use duplicate style definitions
- "less.lint.duplicateProperties": "ignore",
- // Do not use empty rulesets
- "less.lint.emptyRules": "warning",
- // Import statements do not load in parallel
- "less.lint.importStatement": "ignore",
- // Do not use width or height when using padding or border
- "less.lint.boxModel": "ignore",
- // The universal selector (*) is known to be slow
- "less.lint.universalSelector": "ignore",
- // No unit for zero needed
- "less.lint.zeroUnits": "ignore",
- // @font-face rule must define 'src' and 'font-family' properties
- "less.lint.fontFaceProperties": "warning",
- // Hex colors must consist of three or six hex numbers
- "less.lint.hexColorLength": "error",
- // Invalid number of parameters
- "less.lint.argumentsInColorFunction": "error",
- // Unknown property.
- "less.lint.unknownProperties": "warning",
- // IE hacks are only necessary when supporting IE7 and older
- "less.lint.ieHack": "ignore",
- // Unknown vendor specific property.
- "less.lint.unknownVendorSpecificProperties": "ignore",
- // Property is ignored due to the display. E.g. with 'display: inline', the width, height, margin-top, margin-bottom, and float properties have no effect
- "less.lint.propertyIgnoredDueToDisplay": "warning",
- // Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
- "less.lint.important": "ignore",
- // Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
- "less.lint.float": "ignore",
- // Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
- "less.lint.idSelector": "ignore",
- // HTML
- // Maximum amount of characters per line (0 = disable).
- "html.format.wrapLineLength": 120,
- // List of tags, comma separated, that shouldn't be reformatted. 'null' defaults to all tags listed at https://www.w3.org/TR/html5/dom.html#phrasing-content.
- "html.format.unformatted": "a, abbr, acronym, b, bdo, big, br, button, cite, code, dfn, em, i, img, input, kbd, label, map, object, q, samp, script, select, small, span, strong, sub, sup, textarea, tt, var",
- // Indent and sections.
- "html.format.indentInnerHtml": false,
- // Whether existing line breaks before elements should be preserved. Only works before elements, not inside tags or for text.
- "html.format.preserveNewLines": true,
- // Maximum number of line breaks to be preserved in one chunk. Use 'null' for unlimited.
- "html.format.maxPreserveNewLines": null,
- // Format and indent {{#foo}} and {{/foo}}.
- "html.format.indentHandlebars": false,
- // End with a newline.
- "html.format.endWithNewline": false,
- // List of tags, comma separated, that should have an extra newline before them. 'null' defaults to "head, body, /html".
- "html.format.extraLiners": "head, body, /html",
- // Configures if the built-in HTML language support suggests Angular V1 tags and properties.
- "html.suggest.angular1": true,
- // Configures if the built-in HTML language support suggests Ionic tags, properties and values.
- "html.suggest.ionic": true,
- // Configures if the built-in HTML language support suggests HTML5 tags, properties and values.
- "html.suggest.html5": true,
- // JSON
- // Associate schemas to JSON files in the current project
- "json.schemas": [],
- // Markdown
- // A list of URLs or local paths to CSS style sheets to use from the markdown preview. Relative paths are interpreted relative to the folder open in the explorer. If there is no open folder, they are interpreted relative to the location of the markdown file. All '\' need to be written as '\\'.
- "markdown.styles": [],
- // PHP
- // Включена ли проверка PHP.
- "php.validate.enable": true,
- // Указывает на исполняемый файл PHP.
- "php.validate.executablePath": null,
- // Запускается ли Linter при сохранении или в типе.
- "php.validate.run": "onSave",
- // TypeScript
- // Указывает путь к папке, содержащей файлы tsserver и lib*.d.ts, которые необходимо использовать.
- "typescript.tsdk": null,
- // Проверка наличия версии TypeScript в рабочей области
- "typescript.check.workspaceVersion": true,
- // Проверка отличия компилятора TypeScript глобальной установки (например, tsc) от используемой языковой службы TypeScript.
- "typescript.check.tscVersion": true,
- // Включение трассировки сообщений, отправленных на сервер TS
- "typescript.tsserver.trace": "off",
- // Дополните функции сигнатурами их параметров.
- "typescript.useCodeSnippetsOnMethodSuggest": false,
- // Включить или отключить проверку TypeScript
- "typescript.validate.enable": true,
- // Определяет метод обработки пробелов после разделителя-запятой
- "typescript.format.insertSpaceAfterCommaDelimiter": true,
- // Определяет метод обработки пробелов после точки с запятой в операторе for
- "typescript.format.insertSpaceAfterSemicolonInForStatements": true,
- // Определяет метод обработки пробелов после двоичного оператора
- "typescript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
- // Определяет метод обработки пробелов после ключевых слов в операторе потока управления
- "typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
- // Определяет метод обработки пробелов после ключевого слова анонимной функции
- "typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
- // Определяет метод обработки пробелов после открытия и до закрытия непустых круглых скобок
- "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
- // Определяет метод обработки пробелов после открытия и до закрытия непустых квадратных скобок
- "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
- // Определяет, помещается ли открывающая фигурная скобка в новую строку для функций
- "typescript.format.placeOpenBraceOnNewLineForFunctions": false,
- // Определяет, помещается ли открывающая фигурная скобка в новую строку для управляющих блоков
- "typescript.format.placeOpenBraceOnNewLineForControlBlocks": false,
- // Включить или отключить проверку JavaScript
- "javascript.validate.enable": true,
- // Определяет метод обработки пробелов после разделителя-запятой
- "javascript.format.insertSpaceAfterCommaDelimiter": true,
- // Определяет метод обработки пробелов после точки с запятой в операторе for
- "javascript.format.insertSpaceAfterSemicolonInForStatements": true,
- // Определяет метод обработки пробелов после двоичного оператора
- "javascript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
- // Определяет метод обработки пробелов после ключевых слов в операторе потока управления
- "javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
- // Определяет метод обработки пробелов после ключевого слова анонимной функции
- "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
- // Определяет метод обработки пробелов после открытия и до закрытия непустых круглых скобок
- "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
- // Определяет метод обработки пробелов после открытия и до закрытия непустых квадратных скобок
- "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
- // Определяет, помещается ли открывающая фигурная скобка в новую строку для функций
- "javascript.format.placeOpenBraceOnNewLineForFunctions": false,
- // Определяет, помещается ли открывающая фигурная скобка в новую строку для управляющих блоков
- "javascript.format.placeOpenBraceOnNewLineForControlBlocks": false,
- // Расширения
- // Автоматически обновлять расширения
- "extensions.autoUpdate": false,
- // Внешний терминал
- // Настройка терминала, который будет запущен в Windows.
- "terminal.external.windowsExec": "%COMSPEC%",
- // Настройка приложения терминала для запуска в OS X.
- "terminal.external.osxExec": "Terminal.app",
- // Настройка терминала для запуска в Linux.
- "terminal.external.linuxExec": "xterm",
- // Интегрированный терминал
- // Путь оболочки, который используется терминалом в Linux.
- "terminal.integrated.shell.linux": "sh",
- // Аргументы командной строки, которые следует использовать в терминале Linux.
- "terminal.integrated.shellArgs.linux": [],
- // Путь оболочки, который используется терминалом в OS X.
- "terminal.integrated.shell.osx": "sh",
- // Аргументы командной строки, которые следует использовать в терминале OS X.
- "terminal.integrated.shellArgs.osx": [],
- // Путь оболочки, который используется терминалом в Windows. При работе с оболочкой, поставляемой с Windows (cmd, PowerShell или Bash на Ubuntu), укажите C:Windowssysnative вместо C:WindowsSystem32 для использования 64-разрядных версий.
- "terminal.integrated.shell.windows": "C:\\WINDOWS\\system32\\cmd.exe",
- // Определяет семейство шрифтов терминала, значение по умолчанию — editor.fontFamily.
- "terminal.integrated.fontFamily": "",
- // Определяет, будут ли включены лигатуры шрифтов для терминала.
- "terminal.integrated.fontLigatures": false,
- // Определяет размер шрифта (в пикселях) для терминала; значение по умолчанию — editor.fontSize.
- "terminal.integrated.fontSize": 0,
- // Определяет высоту строки терминала; это число умножается на размер шрифта терминала, что дает фактическую высоту строки в пикселях.
- "terminal.integrated.lineHeight": 1.2,
- // Управляет миганием курсора терминала.
- "terminal.integrated.cursorBlinking": false,
- // Управляет заданием переменных при запуске терминала, значение по умолчанию: "True" для OS X и "False" для других платформ.
- "terminal.integrated.setLocaleVariables": false,
- // Набор идентификаторов команд, настраиваемые сочетания клавиш которых не будут передаваться в оболочку, а вместо этого будут всегда обрабатываться Code. Это позволяет использовать настраиваемые сочетания клавиш, которые при обычных условиях были бы использованы оболочкой и работали бы так же, как если бы терминал не имел фокуса, например клавиши CTRL+P запускали бы Quick Open.
- "terminal.integrated.commandsToSkipShell": [
- "editor.action.toggleTabFocusMode",
- "workbench.action.quickOpen",
- "workbench.action.showCommands",
- "workbench.action.terminal.clear",
- "workbench.action.terminal.copySelection",
- "workbench.action.terminal.focus",
- "workbench.action.terminal.focusNext",
- "workbench.action.terminal.focusPrevious",
- "workbench.action.terminal.kill",
- "workbench.action.terminal.new",
- "workbench.action.terminal.paste",
- "workbench.action.terminal.runSelectedText",
- "workbench.action.terminal.scrollDown",
- "workbench.action.terminal.scrollDownPage",
- "workbench.action.terminal.scrollUp",
- "workbench.action.terminal.scrollUpPage",
- "workbench.action.terminal.toggleTerminal"
- ],
- // Представление "Проблемы"
- // Определяет, следует ли представлению "Проблемы" отображать файлы при их открытии
- "problems.autoReveal": true,
- // Телеметрия
- // Разрешить отправку сведений об использовании и ошибках в корпорацию Майкрософт.
- "telemetry.enableTelemetry": true,
- // Разрешить отправку отчетов о сбоях в корпорацию Майкрософт.
- // Чтобы этот параметр вступил в силу, требуется перезагрузка.
- "telemetry.enableCrashReporter": true
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement