Skip to content

Commit

Permalink
Merge pull request #5 from xanjohns/Community-files
Browse files Browse the repository at this point in the history
Multiple Issue Templates and Updated .editorconfig
  • Loading branch information
ryancj14 authored Jun 23, 2021
2 parents 04cd587 + b4edf34 commit 180e3c7
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 42 deletions.
18 changes: 13 additions & 5 deletions .editorconfig
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
37 changes: 0 additions & 37 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE-BUG.md
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:

24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE-FEATURE.md
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:

0 comments on commit 180e3c7

Please sign in to comment.