Files
firefox-accounts-mirror/_dev/.stylelintrc
dschom dda643a253 task(libs/accounts): Port email sending code to libs
Because:
- We want need a standalone library that can be used to send emails

This Commit:
- Ports the email sending code from auth-server into libs

task(libs/accounts): Port email sending code to libs

Because:
- We want need a standalone library that can be used to send emails

This Commit:
- Ports the email sending code from auth-server into libs

task(libs/accounts): Port email rendering code to libs

Because:
- We need a standalone library that can be used to render emails

This Commit:
- Ports the email rendering code from auth-server to libs
- Converts to typescript
- Cleans up code and improves consistency
- Creates work around for copying nxignored l10n assets
2025-11-04 20:51:46 -08:00

47 lines
952 B
Plaintext
Executable File

{
"extends": [
"stylelint-config-prettier",
"stylelint-config-recommended-scss"
],
"ignoreFiles": [
"../**/tailwind.out.scss",
"../libs/accounts/email-renderer/src/**/*.{scss,css}"
],
"rules": {
"declaration-empty-line-before": "never",
"no-descending-specificity": null,
"selector-max-id": [
2,
{
"message": "Using ID selectors is discouraged",
"severity": "warning"
}
],
"scss/at-extend-no-missing-placeholder": null,
"scss/at-import-partial-extension": null,
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"at-root",
"each",
"else",
"error",
"extend",
"function",
"if",
"include",
"layer",
"mixin",
"responsive",
"return",
"screen",
"tailwind",
"use"
]
}
]
}
}