-
Notifications
You must be signed in to change notification settings - Fork 899
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vscode settings and contributing (#50)
- Loading branch information
1 parent
7e407f6
commit e512ba6
Showing
2 changed files
with
28 additions
and
0 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,7 @@ | ||
{ | ||
"rewrap.wrappingColumn": 80, | ||
"editor.rulers": [80, 120], | ||
"markdownlint.config": { | ||
"MD013": true | ||
}, | ||
} |
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,21 @@ | ||
# Contributing | ||
|
||
Welcome to OpenTelemetry specifications repository! | ||
|
||
Before you start - see OpenTelemetry general | ||
[contributing](https://github.com/open-telemetry/community/blob/master/CONTRIBUTING.md) | ||
requirements and recommendations. | ||
|
||
## Proposing a change | ||
|
||
TODO: describe the RFC process https://github.com/open-telemetry/community/issues/56 | ||
|
||
## Writing specs | ||
|
||
Specification is written in markdown format. Please make sure files are rendered | ||
OK on GitHub. | ||
|
||
We highly encourage to use line breaks in markdown files at `80` characters | ||
wide. There are tools that can do it for you effectively. Please submit proposal | ||
to include your editor settings required to enable this behavior so the out of | ||
the box settings for this repository will be consistent. |