Skip to content

Commit 03f22c5

Browse files
author
Flaxseed
committed
Version 0.1.9
1 parent bd35cb1 commit 03f22c5

File tree

806 files changed

+5547
-15878
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

806 files changed

+5547
-15878
lines changed

.coveragerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
branch=True
33
relative_files=True
44
source=
5-
chia
5+
flax
66
tests
77
concurrency=multiprocessing
88
parallel=True

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is. (If what you are experiencing is NOT a bug but instead a support issue, please open a Discussion instead!)
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
16+
1. Go to '...'
17+
2. Click on '....'
18+
3. Scroll down to '....'
19+
4. See error
20+
21+
**Expected behavior**
22+
A clear and concise description of what you expected to happen.
23+
24+
**Screenshots**
25+
If applicable, add screenshots to help explain your problem.
26+
27+
**Desktop (please complete the following information):**
28+
29+
- OS: [e.g. Linux]
30+
- OS Version/Flavor: [e.g. CentOS 7.2]
31+
- CPU: [e.g. Intel Xeon 8175M]
32+
33+
**Additional context**
34+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 0 additions & 52 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ contact_links:
22
- about: Ask a question or request support here
33
name: Ask for Support
44
url: >-
5-
https://github.com/Chia-Network/chia-blockchain/discussions/new?category=support
5+
https://github.com/Flax-Network/flax-blockchain/discussions/new?category=support
66
- about: Request a new feature or idea here
77
name: Make a Request
88
url: >-
9-
https://github.com/Chia-Network/chia-blockchain/discussions/new?category=ideas
10-
- about: Get support on the Chia Keybase chat channels.
11-
name: Join the Keybase.io support chat
12-
url: 'https://keybase.io/team/chia_network.public'
9+
https://github.com/Flax-Network/flax-blockchain/discussions/new?category=ideas
10+
- about: Get support on the Flax Discord chat channels.
11+
name: Join the Discord.io support chat
12+
url: 'https://discord.gg/TgJyxsEFFc'

.github/dependabot.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/linters/.flake8

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[flake8]
2+
max-line-length = 120
3+
exclude = ./typings/**/*
4+
ignore = E203,W503

.github/linters/.isort.cfg

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[settings]
2+
profile=
3+
4+
; vertical hanging indent mode also used in black configuration
5+
multi_line_output = 3
6+
7+
; necessary because black expect the trailing comma
8+
include_trailing_comma = true
9+
10+
; black compatibility
11+
force_grid_wrap = 0
12+
13+
; black compatibility
14+
use_parentheses = True
15+
16+
; black compatibility
17+
ensure_newline_before_comments = True
18+
19+
; we chose 120 as line length
20+
line_length = 120

.github/linters/.markdown-lint.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
###########################
3+
###########################
4+
## Markdown Linter rules ##
5+
###########################
6+
###########################
7+
8+
# Linter rules doc:
9+
# - https://github.com/DavidAnson/markdownlint
10+
#
11+
# Note:
12+
# To comment out a single error:
13+
# <!-- markdownlint-disable -->
14+
# any violations you want
15+
# <!-- markdownlint-restore -->
16+
#
17+
18+
###############
19+
# Rules by id #
20+
###############
21+
MD004: false # Unordered list style
22+
MD007:
23+
indent: 2 # Unordered list indentation
24+
MD013:
25+
line_length: 808 # Line length
26+
MD024:
27+
allow_different_nesting: true
28+
MD026:
29+
punctuation: ".,;:!。,;:" # List of not allowed
30+
MD029: false # Ordered list item prefix
31+
MD033: false # Allow inline HTML
32+
MD036: false # Emphasis used instead of a heading
33+
MD041: false # Allow file to start without h1
34+
35+
#################
36+
# Rules by tags #
37+
#################
38+
blank_lines: false # Error on blank lines

.github/linters/.python-black

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[tool.black]
2+
line_length = 120

0 commit comments

Comments
 (0)