|
1 | 1 | {
|
2 |
| - "js/ts.implicitProjectConfig.experimentalDecorators": true, |
3 | 2 | "[css]": {
|
| 3 | + "editor.codeActionsOnSave": { |
| 4 | + "source.fixAll.stylelint": "explicit" |
| 5 | + }, |
4 | 6 | "editor.defaultFormatter": "stylelint.vscode-stylelint"
|
5 | 7 | },
|
6 | 8 | "[javascript]": {
|
|
48 | 50 | "atlascode.jira.workingSite": {
|
49 | 51 | "baseUrlSuffix": "jira.corp.adobe.com"
|
50 | 52 | },
|
| 53 | + "colorInfo.languages": [ |
| 54 | + { |
| 55 | + "colors": "css", |
| 56 | + "selector": "css" |
| 57 | + }, |
| 58 | + { |
| 59 | + "colors": "css", |
| 60 | + "selector": "postcss" |
| 61 | + }, |
| 62 | + { |
| 63 | + "colors": "css", |
| 64 | + "selector": "javascript" |
| 65 | + }, |
| 66 | + { |
| 67 | + "colors": "css", |
| 68 | + "selector": "js" |
| 69 | + }, |
| 70 | + { |
| 71 | + "colors": "css", |
| 72 | + "selector": "jsx" |
| 73 | + }, |
| 74 | + { |
| 75 | + "colors": "css", |
| 76 | + "selector": "json" |
| 77 | + }, |
| 78 | + { |
| 79 | + "colors": "css", |
| 80 | + "selector": "svg" |
| 81 | + }, |
| 82 | + { |
| 83 | + "colors": "css", |
| 84 | + "selector": "markdown" |
| 85 | + }, |
| 86 | + { |
| 87 | + "colors": "css", |
| 88 | + "selector": "md" |
| 89 | + }, |
| 90 | + { |
| 91 | + "colors": "css", |
| 92 | + "selector": "mdx" |
| 93 | + }, |
| 94 | + { |
| 95 | + "colors": "css", |
| 96 | + "selector": "html" |
| 97 | + }, |
| 98 | + { |
| 99 | + "colors": "css", |
| 100 | + "selector": "yaml" |
| 101 | + } |
| 102 | + ], |
| 103 | + "cssVariables.lookupFiles": [ |
| 104 | + "${workspaceFolder}/tokens/dist/index.css", |
| 105 | + "${workspaceFolder}/tokens/**/*.css", |
| 106 | + "${workspaceFolder}/components/*/index.css", |
| 107 | + "${workspaceFolder}/components/*/themes/*.css" |
| 108 | + ], |
| 109 | + "docthis.includeDescriptionTag": true, |
| 110 | + "docthis.inferTypesFromNames": true, |
| 111 | + "docthis.returnsTag": true, |
51 | 112 | "editor.defaultFormatter": "esbenp.prettier-vscode",
|
| 113 | + "editor.largeFileOptimizations": true, |
| 114 | + "editor.renderControlCharacters": true, |
52 | 115 | "emmet.includeLanguages": {
|
53 | 116 | "postcss": "css"
|
54 | 117 | },
|
55 | 118 | "emmet.syntaxProfiles": {
|
56 | 119 | "postcss": "css"
|
57 | 120 | },
|
| 121 | + "eslint.format.enable": true, |
58 | 122 | "eslint.packageManager": "yarn",
|
| 123 | + "eslint.useESLintClass": true, |
59 | 124 | "files.associations": {
|
60 | 125 | "*.css": "postcss"
|
61 | 126 | },
|
| 127 | + "files.insertFinalNewline": true, |
| 128 | + "files.trimFinalNewlines": true, |
| 129 | + "files.trimTrailingWhitespace": true, |
| 130 | + "github.copilot.enable": { |
| 131 | + "*": true, |
| 132 | + "plaintext": false, |
| 133 | + "scminput": false |
| 134 | + }, |
| 135 | + "githubIssues.createIssueTriggers": ["TODO", "todo", "FIXME", "ISSUE", "BUG"], |
62 | 136 | "githubIssues.issueBranchTitle": "${author}/${sanitizedIssueTitle}-gh-${issueNumber}",
|
63 | 137 | "githubIssues.queries": [
|
64 | 138 | {
|
|
92 | 166 | "query": "is:open mentions:${user}"
|
93 | 167 | }
|
94 | 168 | ],
|
| 169 | + "js/ts.implicitProjectConfig.experimentalDecorators": true, |
95 | 170 | "prettier.configPath": ".prettierrc",
|
96 | 171 | "prettier.ignorePath": ".prettierignore",
|
97 |
| - "prettier.prettierPath": "./node_modules/prettier", |
| 172 | + "prettier.prettierPath": "node_modules/prettier", |
| 173 | + "stylelint.enable": true, |
98 | 174 | "stylelint.packageManager": "yarn",
|
| 175 | + "stylelint.reportDescriptionlessDisables": true, |
| 176 | + "stylelint.reportInvalidScopeDisables": true, |
99 | 177 | "stylelint.reportNeedlessDisables": true,
|
100 | 178 | "stylelint.validate": ["css", "postcss"],
|
101 | 179 | "yaml.schemas": {
|
102 |
| - "~/.vscode/extensions/atlassian.atlascode-3.0.4/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml", |
103 |
| - "./schemas/documentation.schema.json": ["/metadata/*.yml", "/metadata/*.yaml"] |
104 |
| - } |
| 180 | + "./schemas/documentation.schema.json": [ |
| 181 | + "/metadata/*.yml", |
| 182 | + "/metadata/*.yaml" |
| 183 | + ], |
| 184 | + "~/.vscode/extensions/atlassian.atlascode-3.0.4/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" |
| 185 | + }, |
| 186 | + "storyExplorer.storiesGlobs": [ |
| 187 | + ".storybook/deprecated/*/*.stories.js", |
| 188 | + ".storybook/deprecated/*/*.mdx", |
| 189 | + "components/*/stories/*.stories.js", |
| 190 | + "components/*/stories/*.mdx" |
| 191 | + ] |
105 | 192 | }
|
0 commit comments