Skip to content
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

306 add a11y eslint package #330

Merged
merged 27 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
837d332
Grouped defences
gsproston-scottlogic Sep 22, 2023
09e4b7f
Better html grouping
gsproston-scottlogic Sep 22, 2023
4912f3e
Removed strategy box
gsproston-scottlogic Sep 22, 2023
91cde08
Visually clearer grouping
gsproston-scottlogic Sep 22, 2023
7ec146f
Rounded corners on control section
gsproston-scottlogic Sep 22, 2023
e49f216
Added the package
gsproston-scottlogic Sep 25, 2023
2d052fd
Fixed issues in ModelConfigurationSlider
gsproston-scottlogic Sep 25, 2023
1148638
Fixed issues in MainHeader
gsproston-scottlogic Sep 26, 2023
feafaf7
Fixed issues in DocumentViewBox
gsproston-scottlogic Sep 26, 2023
8823458
Removed autofocus for accessibility considerations
gsproston-scottlogic Sep 26, 2023
0e3b191
Fixed issues in ApiKeyBox
gsproston-scottlogic Sep 26, 2023
3af6d67
Using some rather than find
gsproston-scottlogic Sep 26, 2023
9c86336
Using details html elements
gsproston-scottlogic Sep 26, 2023
fd6e601
Better html DRY principles
gsproston-scottlogic Sep 26, 2023
f22f939
Merge branch '269-group-defences' into 306-add-a11y-eslint-package
gsproston-scottlogic Sep 26, 2023
42ed1f5
Fixed issues in DefenceMechanism
gsproston-scottlogic Sep 27, 2023
7f3728c
Accessible overlay
gsproston-scottlogic Sep 27, 2023
f1cbd9d
Merge dev into 306
gsproston-scottlogic Sep 27, 2023
c380ba4
No longer disabling eslint rule for file
gsproston-scottlogic Sep 27, 2023
6a2a7c1
Fix merge conflicts
gsproston-scottlogic Sep 28, 2023
7d742f3
Using border rather than outline for button hover
gsproston-scottlogic Sep 29, 2023
601a544
Allowing autofocus for chat input
gsproston-scottlogic Sep 29, 2023
34b43c4
Better overlay close buttons
gsproston-scottlogic Sep 29, 2023
f8ffa4d
Aria labels for overlay close buttons
gsproston-scottlogic Sep 29, 2023
1caadc9
Using class names for styling in handbook overlay
gsproston-scottlogic Sep 29, 2023
b8339fc
Handbook icon class name
gsproston-scottlogic Sep 29, 2023
97a0240
322 wrap handbook image in a button and give aria label (#341)
gsproston-scottlogic Oct 2, 2023
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
3 changes: 2 additions & 1 deletion frontend/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ module.exports = {
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:@typescript-eslint/strict-type-checked",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
],
ignorePatterns: ["dist", ".eslintrc.cjs"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
tsconfigRootDir: __dirname,
},
plugins: ["react-refresh"],
plugins: ["react-refresh", "jsx-a11y"],
rules: {
"@typescript-eslint/init-declarations": "error",

Expand Down
Loading