-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
10 changed files
with
134 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/ | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"default": true, | ||
"MD013": { | ||
"code_blocks": false | ||
}, | ||
"MD034": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
language: minimal | ||
|
||
env: | ||
- IGNORE_PAT="^\[.*\]:" | ||
|
||
language: node_js | ||
node_js: | ||
- 10 | ||
cache: npm | ||
script: | ||
- for f in text/*; do | ||
grep -vE $IGNORE_PAT $f | fold -s | diff -I $IGNORE_PAT - $f || | ||
( echo "Please wrap RFCs at 80 characters" && exit 1 ); | ||
done | ||
- npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "rfcs", | ||
"version": "0.0.0", | ||
"devDependencies": { | ||
"markdownlint-cli": "^0.13.0" | ||
}, | ||
"scripts": { | ||
"lint": "markdownlint text/*.md" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
<!-- 80 characters per line is preferred --> | ||
# Title | ||
|
||
# Summary | ||
## Summary | ||
|
||
One para explanation of the proposal. | ||
|
||
# Motivation | ||
## Motivation | ||
|
||
Why are we doing this? What use cases does it support? What is the expected | ||
outcome? | ||
|
||
# Detailed design | ||
## Detailed design | ||
|
||
This is the bulk of the RFC. Explain the design in enough detail that: | ||
|
||
- It is reasonably clear how the feature would be implemented. | ||
- Corner cases are dissected by example. | ||
- How the feature is used. | ||
|
||
# Drawbacks | ||
## Drawbacks | ||
|
||
Why should we not do this? | ||
|
||
# Alternatives | ||
## Alternatives | ||
|
||
- Why is this design the best in the space of possible designs? | ||
- What other designs have been considered and what is the rationale for not | ||
choosing them? | ||
- What is the impact of not doing this? | ||
|
||
# Unresolved questions | ||
## Unresolved questions | ||
|
||
What parts of the design are still to be determined? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.