-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Format codebase, enforce formatting (#201)
- Loading branch information
1 parent
4d11574
commit e2c75d0
Showing
159 changed files
with
12,279 additions
and
12,080 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated files by hugo | ||
/public/ | ||
/resources/ | ||
/assets/jsconfig.json | ||
hugo_stats.json | ||
|
||
# Executable may be added to repository | ||
hugo.exe | ||
hugo.darwin | ||
hugo.linux | ||
|
||
# Temporary lock file while building | ||
/.hugo_build.lock | ||
|
||
# Node | ||
node_modules | ||
|
||
# A11y checker | ||
test-results | ||
|
||
# Upstream submodules | ||
themes/hugo-book | ||
themes/hugo-notice |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"recommendations": [ | ||
"streetsidesoftware.code-spell-checker-cspell-bundled-dictionaries" | ||
] | ||
} | ||
"recommendations": [ | ||
"streetsidesoftware.code-spell-checker-cspell-bundled-dictionaries" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
{ | ||
"editor.formatOnSave": false, | ||
"editor.formatOnSave": true, | ||
"cSpell.enabledFileTypes": { | ||
"*": false, | ||
"markdown": true | ||
}, | ||
"cSpell.files": [ | ||
"/content/**", | ||
"README.md", | ||
] | ||
"cSpell.files": ["/content/**", "README.md"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
import { test, expect } from '@playwright/test'; | ||
import AxeBuilder from '@axe-core/playwright'; | ||
import { test, expect } from "@playwright/test"; | ||
import AxeBuilder from "@axe-core/playwright"; | ||
|
||
test.describe('homepage', () => { | ||
test('should not have any automatically detectable accessibility issues', async ({ page }) => { | ||
await page.goto('http://localhost:1313/'); | ||
test.describe("homepage", () => { | ||
test("should not have any automatically detectable accessibility issues", async ({ | ||
page, | ||
}) => { | ||
await page.goto("http://localhost:1313/"); | ||
|
||
const results = await new AxeBuilder({ page }).analyze(); | ||
|
||
expect(results.violations).toEqual([]); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
.container { | ||
max-width: 90rem; | ||
max-width: 90rem; | ||
} | ||
|
||
.markdown img { | ||
/* Circumvent SCSS min function, we need the browser's one */ | ||
max-width: #{"min(100%, 32rem)"}; | ||
/* Circumvent SCSS min function, we need the browser's one */ | ||
max-width: #{"min(100%, 32rem)"}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.