Skip to content

Commit b28d086

Browse files
committed
chore(Dependencies): Update devDependencies
1 parent 81b2e36 commit b28d086

File tree

5 files changed

+3435
-1876
lines changed

5 files changed

+3435
-1876
lines changed

.editorconfig

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# EditorConfig file https://EditorConfig.org
2+
3+
root = true
4+
5+
# Default settings
6+
7+
[*]
8+
indent_style = space
9+
indent_size = 2
10+
tab_width = 2
11+
end_of_line = lf
12+
charset = utf-8
13+
trim_trailing_whitespace = true
14+
insert_final_newline = true
15+
16+
# Overrides for certain file types where necessary
17+
# to meet requirements or conventions.
18+
19+
[*.py]
20+
indent_size = 4
21+
22+
[Makefile]
23+
indent_style = tab

.vscode/extensions.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"recommendations": [
3+
"aaron-bond.better-comments",
4+
"bierner.markdown-preview-github-styles",
5+
"bradlc.vscode-tailwindcss",
6+
"cpylua.language-postcss",
7+
"dbaeumer.vscode-eslint",
8+
"eamodio.gitlens",
9+
"editorconfig.editorconfig",
10+
"esbenp.prettier-vscode",
11+
"formulahendry.auto-rename-tag",
12+
"gruntfuggly.todo-tree",
13+
"joelday.docthis",
14+
"ms-vsliveshare.vsliveshare-pack",
15+
"msjsdiag.debugger-for-chrome",
16+
"orta.vscode-jest",
17+
"redhat.vscode-yaml",
18+
"ryanluker.vscode-coverage-gutters",
19+
"silvenon.mdx",
20+
"streetsidesoftware.code-spell-checker",
21+
"wallabyjs.quokka-vscode",
22+
"wix.vscode-import-cost",
23+
"yzhang.markdown-all-in-one"
24+
]
25+
}

.vscode/settings.json

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"breadcrumbs.enabled": true,
3+
"breadcrumbs.filePath": "last",
4+
"coverage-gutters.lcovname": "coverage/lcov.info",
5+
"cSpell.userWords": [
6+
"Apps",
7+
"dropdown",
8+
"emoji",
9+
"Google's",
10+
"Jupyter",
11+
"Nixta",
12+
"PNGs",
13+
"polyfills",
14+
"repo",
15+
"rPNG",
16+
"screenshots",
17+
"steganography",
18+
"Stencila",
19+
"subfolder",
20+
"transpiles",
21+
"vapourware"
22+
],
23+
"debug.inlineValues": true,
24+
"debug.node.autoAttach": "on",
25+
"editor.suggest.localityBonus": true,
26+
"gitlens.blame.highlight.locations": ["overview", "gutter", "line"],
27+
"gitlens.blame.toggleMode": "window",
28+
"gitlens.codeLens.authors.enabled": false,
29+
"gitlens.codeLens.scopes": ["document", "containers"],
30+
"gitlens.currentLine.enabled": true,
31+
"gitlens.currentLine.format": "${message} | ${ago}",
32+
"gitlens.hovers.currentLine.over": "line",
33+
"gitlens.keymap": "none",
34+
"gitlens.mode.statusBar.enabled": false,
35+
"gitlens.recentChanges.highlight.locations": ["gutter", "line", "overview"],
36+
"gitlens.settings.mode": "advanced",
37+
"gitlens.statusBar.enabled": false,
38+
"gitlens.views.compare.files.layout": "list",
39+
"gitlens.views.fileHistory.enabled": true,
40+
"gitlens.views.lineHistory.enabled": true,
41+
"gitlens.views.repositories.branches.layout": "list",
42+
"gitlens.views.repositories.files.layout": "auto",
43+
"gitlens.views.search.files.layout": "list",
44+
"javascript.suggest.completeFunctionCalls": true,
45+
"javascript.updateImportsOnFileMove.enabled": "prompt",
46+
"liveshare.showInStatusBar": "whileCollaborating",
47+
"markdown.extension.showExplorer": false,
48+
"markdown.extension.toc.levels": "2..4",
49+
"search.showLineNumbers": true,
50+
"search.useGlobalIgnoreFiles": true,
51+
"typescript.preferences.importModuleSpecifier": "relative",
52+
"typescript.suggest.completeFunctionCalls": true,
53+
"typescript.updateImportsOnFileMove.enabled": "prompt",
54+
"workbench.editor.highlightModifiedTabs": true
55+
}

0 commit comments

Comments
 (0)