mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
* add eslint rule to prevent hardcoded colors in svgs * add tests * warn instead of error for now
10 lines
317 B
JavaScript
10 lines
317 B
JavaScript
import requireLabelOnBiticonbutton from "./require-label-on-biticonbutton.mjs";
|
|
import requireThemeColorsInSvg from "./require-theme-colors-in-svg.mjs";
|
|
|
|
export default {
|
|
rules: {
|
|
"require-label-on-biticonbutton": requireLabelOnBiticonbutton,
|
|
"require-theme-colors-in-svg": requireThemeColorsInSvg,
|
|
},
|
|
};
|