Skip to content

Instantly share code, notes, and snippets.

@frontend-coder
Last active January 10, 2023 09:56
Show Gist options
  • Save frontend-coder/8fd3f62b3994fd94b635318609b2c162 to your computer and use it in GitHub Desktop.
Save frontend-coder/8fd3f62b3994fd94b635318609b2c162 to your computer and use it in GitHub Desktop.
Настройки VSC #vsc
{
"path-autocomplete.pathMappings": {
"@img": "${folder}/src/img",
"@scss": "${folder}/src/scss",
"@js": "${folder}/src/js"
// the root is now relative to both p1/src and p2/src
},
"css.validate": false,
"less.validate": false,
"scss.validate": true,
"CSSNavigation.activeCSSFileExtensions": ["scss"],
"CSSNavigation.activeHTMLFileExtensions": ["html", "php", "js"],
"CSSNavigation.searchAcrossWorkspaceFolders": true,
"CSSNavigation.excludeGlobPatterns": ["**/node_modules/**"],
"CSSNavigation.ignoreSameNameCSSFile": false,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"color-highlight.matchWords": true,
"files.autoSaveDelay": 100,
"editor.tabSize": 2,
"indenticator.showHover": true,
"indenticator.color.dark": "#E74C3C",
"indenticator.color.light": "#800099",
"indenticator.width": 1,
"indenticator.style": "dotted",
"indenticator.hover.peekBack": 1,
"indenticator.hover.peekForward": 0,
"indenticator.hover.trimLinesShorterThan": 1,
"indenticator.hover.peekBlockPlaceholder": "...",
"indenticator.inner.color.dark": "#F1C40F",
"indenticator.inner.color.light": "#FF8C00",
"indenticator.inner.width": 1,
"indenticator.inner.style": "dashed",
"indenticator.inner.showHover": true,
"indenticator.inner.hover.peekBack": 1,
"indenticator.inner.hover.peekForward": 1,
"indenticator.inner.hover.trimLinesShorterThan": 1,
"indenticator.inner.hover.peekBlockPlaceholder": "...",
"indenticator.showCurrentDepthInStatusBar": true,
"bookmarks.saveBookmarksInProject": true,
"bookmarks.navigateThroughAllFiles": true,
"bookmarks.sideBar.expanded": true,
"bookmarks.useWorkaroundForFormatters": true,
"bookmarks.wrapNavigation": false,
"files.insertFinalNewline": true,
"git.enableSmartCommit": true,
"highlight-matching-tag.enabled": true,
"highlight-matching-tag.showPath": true,
"highlight-matching-tag.showRuler": true,
"highlight-matching-tag.styles": {
"opening": {
"left": {
"underline": "yellow"
},
"right": {
"surround": "#155FFA"
},
"name": {
"highlight": "rgba(180, 20, 80, 0.8)"
}
},
"closing": {
"full": {
"custom": {
"dark": {
"borderWidth": "0 0 1px 0",
"borderColor": "white",
"borderStyle": "solid",
"borderRadius": "4px",
"right": "10px"
},
"light": {
"borderWidth": "0 0 1px 0",
"borderColor": "brown",
"borderStyle": "solid",
"borderRadius": "4px",
"right": "10px"
}
}
}
}
},
"htmltagwrap.tag": "div",
"editor.accessibilityPageSize": 14,
"editor.fontWeight": "400",
"terminal.external.windowsExec": "C:\\Programs Files\\Git\\bin\\bash.exe",
"better-comments.highlightPlainText": true,
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"backgroundColor": "transparent"
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"backgroundColor": "transparent"
}
],
"emmet.includeLanguages": {
"scss": "true"
},
"files.autoSave": "onFocusChange",
"[php]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"eslint.alwaysShowStatus": true,
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": ["source.formatDocument", "source.fixAll"],
"editor.minimap.renderCharacters": false,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"eslint.validate": ["javascript", "javascriptreact"],
"php.validate.executablePath": "E:\\OpenServer\\modules\\php\\PHP_7.4\\php.exe",
"editor.multiCursorModifier": "alt",
"editor.wordWrap": "on",
"editor.linkedEditing": true,
"editor.fontSize": 13,
"vsicons.dontShowNewVersionMessage": true,
"workbench.iconTheme": "vscode-icons",
"security.workspace.trust.untrustedFiles": "open",
"window.zoomLevel": 1,
"explorer.confirmDelete": false,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"workbench.colorTheme": "Theme Flat",
"eslint.format.enable": true,
"eslint.lintTask.enable": true,
"git.ignoreMissingGitWarning": true,
"sync.forceUpload": true,
"sync.gist": "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",
"scss.lint.compatibleVendorPrefixes": "warning",
"stylelint.configFile": ".stylelintrc",
"stylelint.snippet": ["scss"],
"files.associations": {
"*.scss": "scss"
},
"stylelint.validate": ["scss"],
"stylelint.reportNeedlessDisables": true,
"stylelint.reportInvalidScopeDisables": true,
"stylelint.configBasedir": ".stylelintrc",
"window.menuBarVisibility": "compact",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"emmet.triggerExpansionOnTab": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"htmlScss.isAngularProject": true,
"htmlScss.globalStyles": ["./app/scss/main.scss", "./app/scss/libs.scss"],
"settingsSync.ignoredExtensions": ["hookyqr.beautify"],
"editor.accessibilitySupport": "on"
}
{
"bracket-pair-colorizer-2.colors": [
"#E74C3C",
"#F1C40F",
"#00FFFF",
"#00FF00",
"#FF4500",
"#B71C1C",
"#2E7D32",
"#BF360C",
"#800080",
"#01579B",
"#611B14"
],
"bracket-pair-colorizer-2.forceUniqueOpeningColor": true,
"bracket-pair-colorizer-2.activeScopeCSS": [
"borderStyle : solid",
"borderWidth : 1px",
"borderColor : #611B14",
"opacity: 0.5"
],
"CSSNavigation.activeCSSFileExtensions": ["scss"],
"CSSNavigation.activeHTMLFileExtensions": ["html", "php", "js"],
"CSSNavigation.searchAcrossWorkspaceFolders": true,
"CSSNavigation.excludeGlobPatterns": ["**/node_modules/**"],
"CSSNavigation.enableFindAllReferences": false,
"CSSNavigation.enableWorkspaceSymbols": false,
"CSSNavigation.ignoreSameNameCSSFile": false,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"color-highlight.matchWords": true,
"sync.gist": "7bad9fc29788f57f9b5be7938a49fb5b",
"files.autoSaveDelay": 100,
"editor.tabSize": 2,
"indenticator.showHover": true,
"indenticator.color.dark": "#E74C3C",
"indenticator.color.light": "#800099",
"indenticator.width": 1,
"indenticator.style": "dotted",
"indenticator.hover.peekBack": 1,
"indenticator.hover.peekForward": 0,
"indenticator.hover.trimLinesShorterThan": 1,
"indenticator.hover.peekBlockPlaceholder": "...",
"indenticator.inner.color.dark": "#F1C40F",
"indenticator.inner.color.light": "#FF8C00",
"indenticator.inner.width": 1,
"indenticator.inner.style": "dashed",
"indenticator.inner.showHover": true,
"indenticator.inner.hover.peekBack": 1,
"indenticator.inner.hover.peekForward": 1,
"indenticator.inner.hover.trimLinesShorterThan": 1,
"indenticator.inner.hover.peekBlockPlaceholder": "...",
"indenticator.showCurrentDepthInStatusBar": true,
"todo-tree.tree.showScanModeButton": false,
"bookmarks.saveBookmarksInProject": true,
"bookmarks.navigateThroughAllFiles": true,
"bookmarks.sideBar.expanded": true,
"bookmarks.useWorkaroundForFormatters": true,
"bookmarks.wrapNavigation": false,
"files.insertFinalNewline": true,
"workbench.colorTheme": "Shades of Purple",
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.minimap.renderCharacters": false,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"eslint.validate": ["javascript", "javascriptreact"],
"git.enableSmartCommit": true,
"highlight-matching-tag.styles": {
"opening": {
"name": {
"underline": "yellow"
}
}
},
"htmltagwrap.tag": "div",
"editor.accessibilityPageSize": 14,
"editor.fontWeight": "400",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.external.windowsExec": "C:\\Programs Files\\Git\\bin\\bash.exe",
"better-comments.highlightPlainText": true,
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"backgroundColor": "transparent"
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"backgroundColor": "transparent"
}
],
"emmet.includeLanguages": {
"scss": "true"
},
"workbench.iconTheme": "vscode-icons",
"files.autoSave": "onFocusChange",
"stylelint.configOverrides": {
"color-hex-length": "long"
},
"beautify.language": {
"js": {
"type": ["javascript", "json", "jsonc"],
"filename": [".jshintrc", ".jsbeautifyrc"]
},
"css": ["css", "scss"],
"html": ["htm", "html"]
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"eslint.alwaysShowStatus": true,
"editor.codeActionsOnSave":{
"source.fixAll": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSaveMode": "modifications"
}
Auto Close Tag
Auto Complete Tag
Auto Rename Tag
Better Comments
Bookmarks
Color Highlight
Color the tag name
CSS Initial Value
CSS Navigation
CSS Responsive
CSSTree validator
eCSStractor for VSCode
Error Gutters
ESLint
filesize
final-newline
Fish Text
Formatting Toggle
Git Graph
Git Indicators
GitLens — Git supercharged
Highlight counter
Highlight Matching Tag
HTML End Tag Labels
HTML SCSS Support
HTML tag Support
HTML to CSS autocompletion
HTMLHint
Import Cost
Indenticator
IntelliSense for CSS class names in HTML
JavaScript (ES6) code snippets
jQuery Code Snippets
Markdown Preview Enhanced
Material Icon Theme
Multiple clipboards for VSCode
Path Intellisense
Prettier - Code formatter
Project Manager
px to rem
Refactor CSS
Regex Previewer
Rewrap
Stylelint
SVG Viewer
syntax
TODO Highlight
Todo Tree
Unused CSS Classes for JavaScript/Angular/React
Version Lens
Image preview
Format HTML in PHP
Path Autocomplete
Alignment
Beautify | HookyQR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment