1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-07-19 14:24:58 +02:00
bitwarden-browser/.eslintrc.json
2022-02-22 15:39:11 +01:00

24 lines
450 B
JSON

{
"root": true,
"extends": ["./shared/eslintrc.json"],
"rules": {
"import/order": [
"error",
{
"alphabetize": {
"order": "asc"
},
"newlines-between": "always",
"pathGroups": [
{
"pattern": "jslib-*/**",
"group": "external",
"position": "after"
}
],
"pathGroupsExcludedImportTypes": ["builtin"]
}
]
}
}