Skip to content

Commit

Permalink
json
Browse files Browse the repository at this point in the history
  • Loading branch information
AaravJuneja committed Feb 26, 2024
1 parent daf7d2e commit 9866d69
Showing 1 changed file with 31 additions and 6 deletions.
37 changes: 31 additions & 6 deletions .hintrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"extends": [
"development"
],
"extends": ["development"],
"hints": {
"axe/text-alternatives": "off",
"axe/name-role-value": "off",
Expand All @@ -23,8 +21,35 @@
"axe/parsing": [
"default",
{
"duplicate-id": "off"
"duplicate-id": "off",
"empty-heading": "warn"
}
],
"custom-rule-1": "error",
"custom-rule-2": "warn",
"custom-rule-3": "off",
"grouped-rules": [
"default",
{
"rule-1": "off",
"rule-2": "warn"
}
]
}
}
},
"ignore": [
"node_modules/",
"build/"
],
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"overrides": [
{
"files": ["js/script.js"],
"env": {
"jest": true
}
}
]
}

0 comments on commit 9866d69

Please sign in to comment.