Skip to content

Commit

Permalink
deps: add eslint plugin for a11y
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac committed Jun 10, 2024
1 parent d22eec6 commit 7f3b35e
Show file tree
Hide file tree
Showing 4 changed files with 1,289 additions and 355 deletions.
6 changes: 4 additions & 2 deletions client/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"extends": [
"plugin:bpmn-io/browser",
"plugin:bpmn-io/jsx"
"plugin:bpmn-io/jsx",
"plugin:jsx-a11y/recommended"
],
"parserOptions": {
"ecmaVersion": "latest"
Expand All @@ -17,7 +18,8 @@
"react/react-in-jsx-scope": "error"
},
"plugins": [
"import"
"import",
"jsx-a11y"
],
"settings": {
"react": {
Expand Down
2 changes: 1 addition & 1 deletion client/src/shared/ui/form/FileInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,4 @@ function getIconFromFileType(name, error) {
default:
return <div className="default_file-icon" />;
}
}
}
Loading

0 comments on commit 7f3b35e

Please sign in to comment.