shlink-web-client/.eslintrc

17 lines
401 B
Text
Raw Normal View History

{
2022-03-26 14:17:42 +03:00
"root": true,
2020-09-06 10:32:16 +03:00
"extends": [
2022-03-26 14:46:32 +03:00
"@shlinkio/js-coding-standard"
2020-09-06 10:32:16 +03:00
],
2020-08-22 09:06:41 +03:00
"parserOptions": {
2022-03-26 14:17:42 +03:00
"project": "./tsconfig.json"
},
"ignorePatterns": ["src/service*.ts"],
"rules": {
"jsx-a11y/control-has-associated-label": "off",
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off"
}
}