Skip to content

Commit a59a351

Browse files
authored
Merge pull request #1611 from ksylvan/0711-changelog
Changelog Generator: AI-Powered Automation for Fabric Project
2 parents 2ad454b + 04c3c0c commit a59a351

File tree

19 files changed

+4850
-27
lines changed

19 files changed

+4850
-27
lines changed

.gitignore

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,7 @@ celerybeat.pid
131131
# Environments
132132
.env
133133
.venv
134-
env/
135134
venv/
136-
ENV/
137135
env.bak/
138136
venv.bak/
139137

@@ -349,5 +347,6 @@ web/package-lock.json
349347
.gitignore_backup
350348
web/static/*.png
351349

352-
# Local VSCode project settings
353-
.vscode/
350+
# Local tmp directory
351+
.tmp/
352+
tmp/

.vscode/extensions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["davidanson.vscode-markdownlint"]
3+
}

.vscode/settings.json

Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
{
2+
"cSpell.words": [
3+
"addextension",
4+
"AIML",
5+
"anthropics",
6+
"badfile",
7+
"Behrens",
8+
"blindspots",
9+
"Bombal",
10+
"Cerebras",
11+
"compinit",
12+
"creatordate",
13+
"custompatterns",
14+
"danielmiessler",
15+
"davidanson",
16+
"Debugf",
17+
"dedup",
18+
"deepseek",
19+
"direnv",
20+
"dryrun",
21+
"dsrp",
22+
"editability",
23+
"Eisler",
24+
"elif",
25+
"envrc",
26+
"eugeis",
27+
"Eugen",
28+
"excalidraw",
29+
"exolab",
30+
"fabriclogo",
31+
"fpath",
32+
"frequencypenalty",
33+
"fsdb",
34+
"gantt",
35+
"genai",
36+
"githelper",
37+
"gjson",
38+
"GOARCH",
39+
"godotenv",
40+
"gofmt",
41+
"goimports",
42+
"gomod",
43+
"gonic",
44+
"goopenai",
45+
"GOPATH",
46+
"gopkg",
47+
"GOROOT",
48+
"Graphviz",
49+
"grokai",
50+
"Groq",
51+
"hackerone",
52+
"Haddix",
53+
"hasura",
54+
"hormozi",
55+
"Hormozi's",
56+
"HTMLURL",
57+
"jaredmontoya",
58+
"jessevdk",
59+
"Jina",
60+
"joho",
61+
"ksylvan",
62+
"Langdock",
63+
"ldflags",
64+
"libexec",
65+
"listcontexts",
66+
"listextensions",
67+
"listmodels",
68+
"listpatterns",
69+
"listsessions",
70+
"liststrategies",
71+
"listvendors",
72+
"lmstudio",
73+
"Makefiles",
74+
"markmap",
75+
"matplotlib",
76+
"mattn",
77+
"Miessler",
78+
"nometa",
79+
"numpy",
80+
"ollama",
81+
"opencode",
82+
"openrouter",
83+
"otiai",
84+
"pdflatex",
85+
"pipx",
86+
"PKCE",
87+
"pkgs",
88+
"presencepenalty",
89+
"printcontext",
90+
"printsession",
91+
"pycache",
92+
"pyperclip",
93+
"readystream",
94+
"restapi",
95+
"rmextension",
96+
"samber",
97+
"sashabaranov",
98+
"sdist",
99+
"seaborn",
100+
"semgrep",
101+
"sess",
102+
"Streamlit",
103+
"stretchr",
104+
"talkpanel",
105+
"Telos",
106+
"Thacker",
107+
"tidwall",
108+
"topp",
109+
"ttrc",
110+
"unalias",
111+
"unmarshalling",
112+
"updatepatterns",
113+
"videoid",
114+
"webp",
115+
"wipecontext",
116+
"wipesession",
117+
"writeups",
118+
"xclip",
119+
"yourpatternname"
120+
],
121+
"cSpell.ignorePaths": ["go.mod", ".gitignore", "CHANGELOG.md"],
122+
"markdownlint.config": {
123+
"MD004": false,
124+
"MD011": false,
125+
"MD024": false,
126+
"MD025": false,
127+
"M032": false,
128+
"MD033": {
129+
"allowed_elements": [
130+
"a",
131+
"br",
132+
"code",
133+
"div",
134+
"em",
135+
"h4",
136+
"img",
137+
"module",
138+
"p"
139+
]
140+
},
141+
"MD041": false
142+
}
143+
}

0 commit comments

Comments
 (0)