forked from y-scope/clp-ffi-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.0.5-beta: Initial implementation of IRv2.
done: - serder working with latest ffi-core - reader+writer working with latest ffi-core - bazel build + unit tests passing - task (local) build + unit tests passing todo: - rewrite documentation - do a pass on golangci-lint config - fix c++ linting errors - update linting to taskfile - update github workflows/CI to taskfile - port task-utils.yml to yscope-dev-utils - update ffi-core msgpack api to pass linting
- Loading branch information
Showing
61 changed files
with
1,822 additions
and
2,854 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,13 +1,18 @@ | ||
# Bazel-generated files | ||
# Bazel generated files | ||
bazel-bin | ||
bazel-ffi-go | ||
bazel-out | ||
bazel-testlogs | ||
|
||
# Task generated files | ||
.task/ | ||
|
||
# Build directory | ||
build/ | ||
|
||
# C++ build generated files | ||
cpp/.cache/ | ||
cpp/build/ | ||
**/compile_commands.json | ||
|
||
# Submodules | ||
cpp/clp | ||
tools/yscope-dev-utils |
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,3 @@ | ||
[submodule "tools/yscope-dev-utils"] | ||
path = tools/yscope-dev-utils | ||
url = https://github.com/y-scope/yscope-dev-utils.git |
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,53 @@ | ||
extends: "default" | ||
|
||
yaml-files: | ||
- ".clang-format" | ||
- ".clang-tidy" | ||
- ".golangci.yml" | ||
- ".yamllint.yml" | ||
- "*.yaml" | ||
- "*.yml" | ||
|
||
rules: | ||
anchors: | ||
forbid-duplicated-anchors: true | ||
forbid-unused-anchors: true | ||
|
||
braces: | ||
min-spaces-inside-empty: 0 | ||
max-spaces-inside-empty: 0 | ||
|
||
brackets: | ||
min-spaces-inside-empty: 0 | ||
max-spaces-inside-empty: 0 | ||
|
||
comments: | ||
# Disabled so that snippets can be uncommented easily | ||
require-starting-space: false | ||
|
||
document-end: | ||
present: false | ||
|
||
document-start: | ||
present: false | ||
|
||
float-values: | ||
require-numeral-before-decimal: true | ||
|
||
indentation: | ||
spaces: 2 | ||
|
||
line-length: | ||
max: 100 | ||
allow-non-breakable-words: false | ||
|
||
octal-values: | ||
forbid-implicit-octal: true | ||
forbid-explicit-octal: false | ||
|
||
quoted-strings: | ||
quote-type: "double" | ||
|
||
truthy: | ||
# Disabled for keys since GitHub actions uses the truthy-looking key "on" | ||
check-keys: 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.