Skip to content

Commit

Permalink
fix: .eslintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
K-shir0 committed Dec 18, 2023
1 parent 202b675 commit 3f0235f
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion frontend/octavio/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,34 @@
"optionalDependencies": false
}
],
"no-unused-vars": "off"
"no-unused-vars": "off",
"jsx-a11y/control-has-associated-label": [ 2, {
"labelAttributes": ["label"],
"controlComponents": ["CustomComponent"],
"ignoreElements": [
"audio",
"canvas",
"embed",
"input",
"textarea",
"tr",
"td",
"video"
],
"ignoreRoles": [
"grid",
"listbox",
"menu",
"menubar",
"radiogroup",
"row",
"tablist",
"toolbar",
"tree",
"treegrid"
],
"depth": 3
}]
},
"env": {
"jest": true
Expand Down

0 comments on commit 3f0235f

Please sign in to comment.