File tree 5 files changed +15
-4
lines changed
5 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 16
16
"settings" : {},
17
17
18
18
// Add the IDs of extensions you want installed when the container is created.
19
- "extensions" : [" dbaeumer.vscode-eslint" ],
19
+ "extensions" : [
20
+ " dbaeumer.vscode-eslint" ,
21
+ " svelte.svelte-vscode" ,
22
+ " esbenp.prettier-vscode"
23
+ ],
20
24
21
25
// Use 'forwardPorts' to make a list of ports inside the container available locally.
22
26
// "forwardPorts": [],
Original file line number Diff line number Diff line change 4
4
/node_modules
5
5
! /.vscode
6
6
! /.github
7
+ ! /.devcontainer
7
8
/prettier-playground
8
9
/tests /fixtures /rules /indent /invalid /ts
9
10
/tests /fixtures /rules /indent /invalid /ts-v5
Original file line number Diff line number Diff line change 14
14
15
15
<header >
16
16
<div class =" corner" >
17
- <div class ="sidebar-button" on:click ={handleToggleSidebar }>
17
+ <div
18
+ class =" sidebar-button"
19
+ on:click ={handleToggleSidebar }
20
+ on:keydown ={(e ) =>
21
+ (e .code === " Enter" || e .code === " Space" ) && handleToggleSidebar ()}
22
+ >
18
23
<svg
19
24
xmlns =" http://www.w3.org/2000/svg"
20
25
aria-hidden =" true"
Original file line number Diff line number Diff line change 36
36
<main
37
37
class:hidden-menu ={frontmatter .hiddenMenu }
38
38
on:click ={sidebarOpen ? resetSidebarOpen : null }
39
+ on:keydown ={sidebarOpen ? resetSidebarOpen : null }
39
40
>
40
41
<div class =" main-content" >
41
42
<slot />
Original file line number Diff line number Diff line change 107
107
"@types/markdown-it-container" : " ^2.0.5" ,
108
108
"@types/markdown-it-emoji" : " ^2.0.2" ,
109
109
"@types/mocha" : " ^10.0.0" ,
110
- "@types/node" : " ^16.0 .0" ,
110
+ "@types/node" : " ^18.11 .0" ,
111
111
"@types/postcss-safe-parser" : " ^5.0.1" ,
112
112
"@types/prismjs" : " ^1.26.0" ,
113
113
"@types/stylus" : " ^0.48.38" ,
159
159
"semver" : " ^7.3.5" ,
160
160
"simple-git-hooks" : " ^2.8.0" ,
161
161
"stylelint" : " ^14.0.0" ,
162
- "stylelint-config-standard" : " ^28 .0.0" ,
162
+ "stylelint-config-standard" : " ^29 .0.0" ,
163
163
"stylus" : " ^0.59.0" ,
164
164
"svelte" : " ^3.46.1" ,
165
165
"svelte-adapter-ghpages" : " 0.0.2" ,
You can’t perform that action at this time.
0 commit comments