1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-14 02:08:50 +02:00
bitwarden-browser/apps/web/.eslintrc.json
Robyn MacCallum 34f33ebb54
[SG-487] Web component unit tests (#3189)
* Configure jest for web

* attempt to fix linter fule preventing angular core imports

* trial initiation tests

* small trial initiation component fix

* Small naming fix in tests
2022-08-04 10:19:31 -04:00

14 lines
179 B
JSON

{
"env": {
"browser": true
},
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": ["**/app/core/*", "**/reports/*"]
}
]
}
}