Skip to content

Commit 059620a

Browse files
byteakpcastastrophe
authored andcommitted
Revert unintended deletion of .gitignore and settings
1 parent aebae75 commit 059620a

File tree

2 files changed

+241
-0
lines changed

2 files changed

+241
-0
lines changed

.gitignore

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Ignore dist directories except metadata.json
2+
**/dist/*
3+
!components/*/dist/metadata.json
4+
!tokens/dist/json/*
5+
6+
# Not committing the map assets, these are dev-only
7+
*.map
8+
9+
# Recommended update re:https://docs.netlify.com/integrations/frameworks/eleventy/
10+
**/node_modules/**
11+
12+
temp
13+
.npmrc*
14+
.nx
15+
.env
16+
.tmp
17+
npm-debug.log*
18+
.DS_Store
19+
.idea
20+
lerna-debug.log
21+
yarn-error.log
22+
package-lock.json
23+
.nx
24+
25+
# Storybook build output
26+
.storybook/storybook-static
27+
storybook-static
28+
build-storybook.log
29+
30+
# Chromatic
31+
chromatic.log
32+
chromatic-build-*.xml
33+
chromatic-diagnostics*.json
34+
chromatic.config.json
35+
36+
# Custom diff tool
37+
.diff-output
38+
39+
.eslintcache
40+
.stylelintcache
41+
42+
# yarn 3
43+
.pnp.*
44+
.yarn/*
45+
!.yarn/patches
46+
!.yarn/plugins
47+
!.yarn/releases
48+
!.yarn/sdks
49+
!.yarn/versions
50+
51+
.cursor/rules/nx-rules.mdc
52+
.github/instructions/nx.instructions.md

.vscode/settings.json

Lines changed: 189 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,189 @@
1+
{
2+
"[css]": {
3+
"editor.codeActionsOnSave": {
4+
"source.fixAll.stylelint": "explicit"
5+
},
6+
"editor.defaultFormatter": "stylelint.vscode-stylelint"
7+
},
8+
"[javascript]": {
9+
"editor.codeActionsOnSave": {
10+
"source.organizeImports": "explicit"
11+
},
12+
"editor.colorDecorators": true,
13+
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
14+
},
15+
"[markdown]": {
16+
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
17+
},
18+
"atlascode.bitbucket.enabled": false,
19+
"atlascode.jira.enabled": true,
20+
"atlascode.jira.jqlList": [
21+
{
22+
"enabled": true,
23+
"id": "6ec799fe-ae6a-46cd-86d8-ec19839a70e3",
24+
"monitor": true,
25+
"name": "Current sprint",
26+
"query": "\"Project\" = \"CSS\" AND sprint in openSprints ()",
27+
"siteId": "jira.corp.adobe.com"
28+
},
29+
{
30+
"enabled": true,
31+
"id": "6916b063-1a7b-411a-87eb-2e58c5a82ffa",
32+
"monitor": true,
33+
"name": "Assigned to me",
34+
"query": "assignee= currentUser() and status != Closed and status != Done",
35+
"siteId": "jira.corp.adobe.com"
36+
},
37+
{
38+
"enabled": true,
39+
"id": "fb78270c-9799-4b6a-aaa7-16badf452395",
40+
"monitor": true,
41+
"name": "Open CSS issues",
42+
"query": "status != Closed and status != Done AND \"Project\" = \"CSS\" ",
43+
"siteId": "jira.corp.adobe.com"
44+
}
45+
],
46+
"atlascode.jira.lastCreateSiteAndProject": {
47+
"projectKey": "CSS",
48+
"siteId": "jira.corp.adobe.com"
49+
},
50+
"atlascode.jira.workingSite": {
51+
"baseUrlSuffix": "jira.corp.adobe.com"
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/css/index.css",
105+
"${workspaceFolder}/tokens/dist/css/*.css",
106+
"${workspaceFolder}/components/*/index.css",
107+
"${workspaceFolder}/components/*/themes/*.css"
108+
],
109+
"docthis.includeDescriptionTag": true,
110+
"docthis.inferTypesFromNames": true,
111+
"docthis.returnsTag": true,
112+
"editor.defaultFormatter": "esbenp.prettier-vscode",
113+
"editor.largeFileOptimizations": true,
114+
"editor.renderControlCharacters": true,
115+
"emmet.includeLanguages": {
116+
"postcss": "css"
117+
},
118+
"emmet.syntaxProfiles": {
119+
"postcss": "css"
120+
},
121+
"eslint.format.enable": true,
122+
"eslint.useESLintClass": true,
123+
"files.associations": {
124+
"*.css": "postcss"
125+
},
126+
"files.insertFinalNewline": true,
127+
"files.trimFinalNewlines": true,
128+
"files.trimTrailingWhitespace": true,
129+
"github.copilot.enable": {
130+
"*": true,
131+
"plaintext": false,
132+
"scminput": false
133+
},
134+
"githubIssues.createIssueTriggers": ["TODO", "todo", "FIXME", "ISSUE", "BUG"],
135+
"githubIssues.issueBranchTitle": "${author}/${sanitizedIssueTitle}-gh-${issueNumber}",
136+
"githubIssues.queries": [
137+
{
138+
"label": "My issues",
139+
"query": "default"
140+
},
141+
{
142+
"label": "Created issues",
143+
"query": "author:${user} state:open repo:${owner}/${repository} sort:created-desc"
144+
},
145+
{
146+
"label": "Recent issues",
147+
"query": "state:open repo:${owner}/${repository} sort:updated-desc"
148+
}
149+
],
150+
"githubPullRequests.queries": [
151+
{
152+
"label": "Waiting for my review",
153+
"query": "repo:${owner}/${repository} is:open review-requested:${user}"
154+
},
155+
{
156+
"label": "Assigned to me",
157+
"query": "repo:${owner}/${repository} is:open assignee:${user}"
158+
},
159+
{
160+
"label": "Created by me",
161+
"query": "repo:${owner}/${repository} is:open author:${user}"
162+
},
163+
{
164+
"label": "Mentioned me",
165+
"query": "repo:${owner}/${repository} is:open mentions:${user}"
166+
}
167+
],
168+
"js/ts.implicitProjectConfig.experimentalDecorators": true,
169+
"postcss.validate": false,
170+
"prettier.configPath": ".prettierrc",
171+
"prettier.ignorePath": ".prettierignore",
172+
"prettier.prettierPath": "node_modules/prettier",
173+
"stylelint.enable": true,
174+
"stylelint.packageManager": "yarn",
175+
"stylelint.reportDescriptionlessDisables": true,
176+
"stylelint.reportInvalidScopeDisables": true,
177+
"stylelint.reportNeedlessDisables": true,
178+
"stylelint.validate": ["css", "postcss"],
179+
"yaml.schemas": {
180+
"~/.vscode/extensions/atlassian.atlascode-3.0.4/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
181+
},
182+
"storyExplorer.storiesGlobs": [
183+
".storybook/deprecated/*/*.stories.js",
184+
".storybook/deprecated/*/*.mdx",
185+
"components/*/stories/*.stories.js",
186+
"components/*/stories/*.mdx"
187+
],
188+
"nxConsole.generateAiAgentRules": true
189+
}

0 commit comments

Comments
 (0)