Skip to content

Commit

Permalink
Merge pull request #10 from reciperium/fix/backstory-space
Browse files Browse the repository at this point in the history
Fix/backstory space
  • Loading branch information
woile authored Oct 6, 2024
2 parents 146457d + eed2b12 commit f9aed99
Show file tree
Hide file tree
Showing 8 changed files with 190 additions and 62 deletions.
38 changes: 38 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# http://editorconfig.org

root = true

[*]
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
charset = utf-8

# Use 2 spaces for the HTML files
[*.html]
indent_size = 2

# The JSON files contain newlines inconsistently
[*.json]
indent_size = 2
insert_final_newline = ignore

# Use 2 spaces for the JS and TS files
[*.{js, ts}]
indent_style = space
indent_size = 2

# Use 2 spaces for the YAML files
[*.{yml, yaml}]
indent_style = space
indent_size = 2

# Ignore vendor libraries
[**/static/**/vendor/**]
indent_style = ignore
indent_size = ignore

# Minified JavaScript files shouldn't be changed
[**.min.js]
indent_style = ignore
insert_final_newline = ignore
2 changes: 1 addition & 1 deletion .github/workflows/bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
bump-version:
if: "!startsWith(github.event.head_commit.message, 'bump:')"
if: ${{ !startsWith(github.event.head_commit.message, 'bump:') }}
runs-on: ubuntu-latest
name: "Bump version and create changelog with commitizen"
steps:
Expand Down
117 changes: 85 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

[LOGO HERE](https://github.com/reciperium/recipe-lang/issues/1)

> Write recipes understood by humans and machines, powering reciperium.com
> Write recipes understood by humans and machines, powering [reciperium.com](https://www.reciperium.com)

> [!WARNING]
>
> Recipe lang is in its infancy, this may change unexpectedly
> Recipe lang is in its infancy, things may change unexpectedly
## About

Expand Down
2 changes: 1 addition & 1 deletion crates/recipe-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ wasm-bindgen = {version = "0.2.92", optional = true}
tsify = { version = "0.4.5", optional = true}

[dev-dependencies]
rstest = "0.17.0"
rstest = "0.23.0"
serde_json = "1.0"

[lib]
Expand Down
Loading

0 comments on commit f9aed99

Please sign in to comment.