-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from xanjohns/Community-files
Multiple Issue Templates and Updated .editorconfig
- Loading branch information
Showing
4 changed files
with
75 additions
and
42 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 |
---|---|---|
@@ -1,19 +1,27 @@ | ||
# Editor config file, see http://editorconfig.org/ | ||
root = true | ||
|
||
#are there any other file formats that requrie tabs? | ||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
end_of_line = lf #verified v/sv | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true #validated c | ||
trim_trailing_whitespace = true | ||
|
||
[*.{h,cpp,tcl,v,sv,html}] | ||
indent_size = 2 #validated | ||
[{*.{h,cpp,cc,tcl,v,sv,html,sh,cmake},CMakeLists.txt}] | ||
indent_size = 2 | ||
|
||
[*.py] | ||
indent_size = 4 | ||
|
||
[Makefile] | ||
indent_style = tab | ||
|
||
# Ignore third_party directory | ||
[/third_party/**] | ||
charset = unset | ||
indent_style = unset | ||
end_of_line = unset | ||
insert_final_newline = unset | ||
trim_trailing_whitespace = unset | ||
indent_size = unset |
This file was deleted.
Oops, something went wrong.
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,38 @@ | ||
--- | ||
name: Bug Report | ||
title: Bug Report | ||
about: A standard issue template to use in all Symbiflow repositories. Adapted from Open Source Templates by Tal Ater. | ||
labels: bug | ||
--- | ||
<!--- Provide a general summary of the issue in the Title above --> | ||
|
||
## Description | ||
<!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug --> | ||
|
||
## Expected Behavior | ||
<!--- Tell us what should happen --> | ||
|
||
## Actual Behavior | ||
<!--- Tell us what happens instead --> | ||
|
||
## Possible Fix | ||
<!--- Not obligatory, but suggest a fix or reason for the bug --> | ||
|
||
## Steps to Reproduce | ||
<!--- Provide a link to a live example, or an unambiguous set of steps to --> | ||
<!--- reproduce this bug. Include code to reproduce, if relevant --> | ||
1. | ||
2. | ||
3. | ||
4. | ||
|
||
## Context | ||
<!--- How has this bug affected you? What were you trying to accomplish? --> | ||
|
||
## Your Environment | ||
<!--- Include as many relevant details about the environment you experienced the bug in --> | ||
* Version used: | ||
* Environment name and version (e.g. Chrome 39, node.js 5.4): | ||
* Operating System and version (desktop or mobile): | ||
* Link to your project: | ||
|
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,24 @@ | ||
--- | ||
name: New Feature/Improvement | ||
about: A standard issue template to use in all Symbiflow repositories. Adapted from Open Source Templates by Tal Ater. | ||
labels: enhancement | ||
--- | ||
<!--- Provide a general summary of the issue in the Title above --> | ||
|
||
## Detailed Description | ||
<!--- Provide a detailed description of the change or addition you are proposing --> | ||
|
||
## Context | ||
<!--- Why is this change important to you? How would you use it? --> | ||
<!--- How can it benefit other users? --> | ||
|
||
## Possible Implementation | ||
<!--- Not obligatory, but suggest an idea for implementing addition or change --> | ||
|
||
## Your Environment | ||
<!--- Include as many relevant details about the environment you experienced the bug in --> | ||
* Version used: | ||
* Environment name and version (e.g. Chrome 39, node.js 5.4): | ||
* Operating System and version (desktop or mobile): | ||
* Link to your project: | ||
|