Skip to content

Commit

Permalink
chore: update vscode settings and suggestions (#3242)
Browse files Browse the repository at this point in the history
  • Loading branch information
castastrophe authored Oct 14, 2024
1 parent 1c5d70c commit fbdcf34
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 18 deletions.
31 changes: 18 additions & 13 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
{
"recommendations": [
"rajdeepchandra.spectrum-design-tokens-for-vscode",
"gruntfuggly.todo-tree",
"nrwl.angular-console",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"vunguyentuan.vscode-postcss",
"mariusschulz.yarn-lock-syntax",
"stylelint.vscode-stylelint",
"joshbolduc.story-explorer",
"bierner.lit-html",
"atlassian.atlascode",
"github.vscode-pull-request-github",
"me-dutour-mathieu.vscode-github-actions",
"bierner.color-info",
"bierner.lit-html",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"figma.figma-vscode-extension",
"github.copilot",
"github.copilot-chat",
"github.vscode-github-actions",
"github.vscode-pull-request-github",
"gruntfuggly.todo-tree",
"joshbolduc.story-explorer",
"kisstkondoros.csstriggers",
"vunguyentuan.vscode-css-variables"
"mariusschulz.yarn-lock-syntax",
"me-dutour-mathieu.vscode-github-actions",
"nrwl.angular-console",
"oouo-diogo-perdigao.docthis",
"rajdeepchandra.spectrum-design-tokens-for-vscode",
"stylelint.vscode-stylelint",
"vunguyentuan.vscode-css-variables",
"vunguyentuan.vscode-postcss"
]
}
97 changes: 92 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"js/ts.implicitProjectConfig.experimentalDecorators": true,
"[css]": {
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": "explicit"
},
"editor.defaultFormatter": "stylelint.vscode-stylelint"
},
"[javascript]": {
Expand Down Expand Up @@ -48,17 +50,89 @@
"atlascode.jira.workingSite": {
"baseUrlSuffix": "jira.corp.adobe.com"
},
"colorInfo.languages": [
{
"colors": "css",
"selector": "css"
},
{
"colors": "css",
"selector": "postcss"
},
{
"colors": "css",
"selector": "javascript"
},
{
"colors": "css",
"selector": "js"
},
{
"colors": "css",
"selector": "jsx"
},
{
"colors": "css",
"selector": "json"
},
{
"colors": "css",
"selector": "svg"
},
{
"colors": "css",
"selector": "markdown"
},
{
"colors": "css",
"selector": "md"
},
{
"colors": "css",
"selector": "mdx"
},
{
"colors": "css",
"selector": "html"
},
{
"colors": "css",
"selector": "yaml"
}
],
"cssVariables.lookupFiles": [
"${workspaceFolder}/tokens/dist/index.css",
"${workspaceFolder}/tokens/**/*.css",
"${workspaceFolder}/components/*/index.css",
"${workspaceFolder}/components/*/themes/*.css"
],
"docthis.includeDescriptionTag": true,
"docthis.inferTypesFromNames": true,
"docthis.returnsTag": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.largeFileOptimizations": true,
"editor.renderControlCharacters": true,
"emmet.includeLanguages": {
"postcss": "css"
},
"emmet.syntaxProfiles": {
"postcss": "css"
},
"eslint.format.enable": true,
"eslint.packageManager": "yarn",
"eslint.useESLintClass": true,
"files.associations": {
"*.css": "postcss"
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"github.copilot.enable": {
"*": true,
"plaintext": false,
"scminput": false
},
"githubIssues.createIssueTriggers": ["TODO", "todo", "FIXME", "ISSUE", "BUG"],
"githubIssues.issueBranchTitle": "${author}/${sanitizedIssueTitle}-gh-${issueNumber}",
"githubIssues.queries": [
{
Expand Down Expand Up @@ -92,14 +166,27 @@
"query": "is:open mentions:${user}"
}
],
"js/ts.implicitProjectConfig.experimentalDecorators": true,
"prettier.configPath": ".prettierrc",
"prettier.ignorePath": ".prettierignore",
"prettier.prettierPath": "./node_modules/prettier",
"prettier.prettierPath": "node_modules/prettier",
"stylelint.enable": true,
"stylelint.packageManager": "yarn",
"stylelint.reportDescriptionlessDisables": true,
"stylelint.reportInvalidScopeDisables": true,
"stylelint.reportNeedlessDisables": true,
"stylelint.validate": ["css", "postcss"],
"yaml.schemas": {
"~/.vscode/extensions/atlassian.atlascode-3.0.4/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml",
"./schemas/documentation.schema.json": ["/metadata/*.yml", "/metadata/*.yaml"]
}
"./schemas/documentation.schema.json": [
"/metadata/*.yml",
"/metadata/*.yaml"
],
"~/.vscode/extensions/atlassian.atlascode-3.0.4/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"storyExplorer.storiesGlobs": [
".storybook/deprecated/*/*.stories.js",
".storybook/deprecated/*/*.mdx",
"components/*/stories/*.stories.js",
"components/*/stories/*.mdx"
]
}

0 comments on commit fbdcf34

Please sign in to comment.