Skip to content

Commit

Permalink
more niceness
Browse files Browse the repository at this point in the history
  • Loading branch information
aceat64 committed Aug 22, 2024
1 parent 8c4368a commit dbb9a98
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
{
"search.exclude": {
"**/material": true,
"**/node_modules": true,
"**/package-lock.json": true
},
"search.followSymlinks": false,
"typescript.tsdk": "node_modules/typescript/lib",
"yaml.schemas": {
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
},
"yaml.customTags": [
"!ENV scalar",
"!ENV sequence",
"tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg",
"tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji",
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format",
"tag:yaml.org,2002:python/object/apply:pymdownx.slugs.slugify"
],
"markdownlint.config": {
"MD007": {
"indent": 4
},
"MD033": false
},
"yaml.customTags": [
"tag:yaml.org,2002:python/name:materialx.emoji.twemoji",
"tag:yaml.org,2002:python/name:materialx.emoji.to_svg",
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format"
],
"sarif-viewer.connectToGithubCodeScanning": "off"
}
24 changes: 24 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "poetry run mkdocs build",
"group": "build",
"presentation": {
"reveal": "silent"
},
},
{
"label": "Start and watch for changes",
"type": "shell",
"command": "poetry run mkdocs serve",
"isBackground": true,
"group": "build",
"presentation": {
"reveal": "silent"
}
}
]
}

0 comments on commit dbb9a98

Please sign in to comment.