Skip to content

chore(deps): update dependency stylelint-config-standard to v29 #273

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
"settings": {},

// Add the IDs of extensions you want installed when the container is created.
"extensions": ["dbaeumer.vscode-eslint"],
"extensions": [
"dbaeumer.vscode-eslint",
"svelte.svelte-vscode",
"esbenp.prettier-vscode"
],

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
Expand Down
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/node_modules
!/.vscode
!/.github
!/.devcontainer
/prettier-playground
/tests/fixtures/rules/indent/invalid/ts
/tests/fixtures/rules/indent/invalid/ts-v5
Expand Down
7 changes: 6 additions & 1 deletion docs-svelte-kit/src/lib/header/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@

<header>
<div class="corner">
<div class="sidebar-button" on:click={handleToggleSidebar}>
<div
class="sidebar-button"
on:click={handleToggleSidebar}
on:keydown={(e) =>
(e.code === "Enter" || e.code === "Space") && handleToggleSidebar()}
>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
Expand Down
1 change: 1 addition & 0 deletions docs-svelte-kit/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
<main
class:hidden-menu={frontmatter.hiddenMenu}
on:click={sidebarOpen ? resetSidebarOpen : null}
on:keydown={sidebarOpen ? resetSidebarOpen : null}
>
<div class="main-content">
<slot />
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"@types/markdown-it-container": "^2.0.5",
"@types/markdown-it-emoji": "^2.0.2",
"@types/mocha": "^10.0.0",
"@types/node": "^16.0.0",
"@types/node": "^18.11.0",
"@types/postcss-safe-parser": "^5.0.1",
"@types/prismjs": "^1.26.0",
"@types/stylus": "^0.48.38",
Expand Down Expand Up @@ -159,7 +159,7 @@
"semver": "^7.3.5",
"simple-git-hooks": "^2.8.0",
"stylelint": "^14.0.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard": "^29.0.0",
"stylus": "^0.59.0",
"svelte": "^3.46.1",
"svelte-adapter-ghpages": "0.0.2",
Expand Down