bitwarden-estensione-browser/apps/web/.eslintrc.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
296 B
JSON
Raw Normal View History

2022-02-24 12:10:07 +01:00
{
"env": {
"browser": true
2022-07-26 19:34:45 +02:00
},
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": [
"**/app/core/*",
"**/reports/*",
"**/app/shared/*",
"@bitwarden/web-vault/*",
"src/**/*"
]
2022-07-26 19:34:45 +02:00
}
]
2022-02-24 12:10:07 +01:00
}
}