1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

docs: Delete old preferred-styles-import-placement (#6185)

Having old ADRs makes it harder for newcomers, that have to navigate
through many ADRs and spot the ones that were superseded by others. We
can save the mental burden by just moving the old ones to a deprecated
folder
This commit is contained in:
Gastón Fournier 2024-02-09 17:50:08 +01:00 committed by GitHub
parent 0d0fbdc6ce
commit ca761584c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 2 additions and 4 deletions

View File

@ -35,7 +35,6 @@ We have created a set of ADRs to help guide the development of the front end:
* [Preferred component props usage](./front-end/preferred-component-props-usage.md)
* [Preferred export](./front-end/preferred-export.md)
* [Preferred function type](./front-end/preferred-function-type.md)
* [Preferred style import placement](./front-end/preferred-styles-import-placement.md)
* [Preferred styling method](./front-end/preferred-styling-method.md)
* [Preferred data mutation method](./front-end/preferred-data-mutation-method.md)
* [Preferred data fetching method](./front-end/preferred-data-fetching-method.md)

View File

@ -4,7 +4,7 @@ title: "ADR: preferred styles import placement"
## Background
SUPERSEDED BY [ADR: Preferred styling method](./preferred-styling-method.md)
SUPERSEDED BY [ADR: Preferred styling method](../preferred-styling-method.md)
In the codebase, we have found a need to standardise where to locate the styles import. When using CSS modules, the styles import placement matters for the priority of the styles if you are passing through styles to other components. IE:

View File

@ -2,7 +2,7 @@
title: "ADR: preferred styling method"
---
This document supersedes [ADR: preferred styles import placement](./preferred-styles-import-placement.md)
This document supersedes [ADR: preferred styles import placement](./deprecated/preferred-styles-import-placement.md)
## Background

View File

@ -15,7 +15,6 @@ We have created a set of ADRs to help guide the development of the frontend:
* [Preferred component props usage](../ADRs/front-end/preferred-component-props-usage.md)
* [Preferred export](../ADRs/front-end/preferred-export.md)
* [Preferred function type](../ADRs/front-end/preferred-function-type.md)
* [Preferred style import placement](../ADRs/front-end/preferred-styles-import-placement.md)
* [Preferred styling method](../ADRs/front-end/preferred-styling-method.md)
* [Preferred data mutation method](../ADRs/front-end/preferred-data-mutation-method.md)
* [Preferred data fetching method](../ADRs/front-end/preferred-data-fetching-method.md)