AndersDJohnson / AndersDJohnson/recurpolate
feat: relative paths
Aperta
enhancement
help wanted
- Lingua principale
- JavaScript
- Stelle
- 7
- Fork
- 1
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Not sure if we should make paths relative or absolute by default. Leaning toward absolute by default. Otherwise could do relative by default, with some prefix for absolute e.g. `/` or `#`. Perhaps take inspiration from [JSON Reference](https://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03).
E.g.:
```js
{
someReallyLongKey: {
b: {
b1: 'B1'
}
c: '${./b.b1}'
}
}
```
instead of:
```js
{
someReallyLongKey: {
b: {
b1: 'B1'
}
c: '${someReallyLongKey.b.b1}'
}
}
```
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.