├── 0000-template.md ├── README.md ├── active └── .gitkeep └── complete └── .gitkeep /0000-template.md: -------------------------------------------------------------------------------- 1 | - Start Date: (fill me in with today's date, YYYY-MM-DD) 2 | - RFC PR: (leave this empty) 3 | - Github Issue: (leave this empty) 4 | 5 | # Summary 6 | 7 | One para explanation of the feature. 8 | 9 | # Motivation 10 | 11 | Why are we doing this? What use cases does it support? What is the expected outcome? 12 | 13 | # Detailed design 14 | 15 | This is the bulk of the RFC. Explain the design in enough detail for somebody familiar 16 | with the framework to understand, and for somebody familiar with the implementation to implement. 17 | This should get into specifics and corner-cases, and include examples of how the feature is used. 18 | 19 | # Drawbacks 20 | 21 | Why should we *not* do this? 22 | 23 | # Alternatives 24 | 25 | What other designs have been considered? What is the impact of not doing this? 26 | 27 | # Unresolved questions 28 | 29 | What parts of the design are still TBD? 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Babelscript RFCs 2 | 3 | > Copied from [Ember RFCs] and [Rust RFC process] 4 | 5 | [Ember RFCs]: https://github.com/emberjs/rfcs 6 | [Rust RFC process]: https://github.com/rust-lang/rfcs 7 | -------------------------------------------------------------------------------- /active/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelscript/rfcs/90902627fdde35d2d394a2e51bf4e27013f20dee/active/.gitkeep -------------------------------------------------------------------------------- /complete/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelscript/rfcs/90902627fdde35d2d394a2e51bf4e27013f20dee/complete/.gitkeep --------------------------------------------------------------------------------