Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project handoff to forked version. #1

Merged
merged 33 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
86b4c43
fix: Keep `_` in patterns
alappe Apr 17, 2020
0af59ab
Rename lexer and parser to prevent conflicts
marcelotto Dec 20, 2023
d324893
replace '' with ~c to silence warnings
bradhanks Jan 1, 2024
dd19b2d
warning: in order to compile .xrl files, you must add "compilers: [:l…
bradhanks Jan 1, 2024
a90f461
Update links
christhekeele Apr 13, 2024
2817d2a
Run updated formatter.
christhekeele Apr 13, 2024
667c254
Update tooling.
christhekeele Apr 13, 2024
a891c0b
Try test matrix
christhekeele Apr 13, 2024
67d70d2
Disable typechecking until we figure out how to not depend on dialyxir.
christhekeele Apr 14, 2024
f604db0
Try to test against Elixir 1.6
christhekeele Apr 14, 2024
3f2b8eb
Remove lockfile from library.
christhekeele Apr 14, 2024
05be3e4
Add basic windows support to build matrix. Not going to do the long t…
christhekeele Apr 14, 2024
681c0b0
Enable auto-formatting from vs code.
christhekeele Apr 14, 2024
00108c7
Merge in 1.16 fixes from bradhanks/erlex:master
christhekeele Apr 14, 2024
ab9b2e1
Remove unused config folder/files.
christhekeele Apr 14, 2024
ad58ee3
Update changelog.
christhekeele Apr 14, 2024
f99d7ad
Remove old .check.exs stuff, update readme test suite links
christhekeele Apr 14, 2024
55e5cf1
Fix tags and broken changelog links.
christhekeele Apr 14, 2024
279c44a
Work on test suite.
christhekeele Apr 14, 2024
4e5e4d0
Work on test coverage reporting.
christhekeele Apr 14, 2024
9be1974
Apply lexer/parser rename from https://github.com/asummers/erlex/pull/54
christhekeele Apr 14, 2024
8a01ee0
Merge in lone underscore fix from https://github.com/asummers/erlex/p…
christhekeele Apr 14, 2024
5a8b8ad
Update changelog with other PR merges.
christhekeele Apr 14, 2024
94fc7fe
Add edge-testing action.
christhekeele Apr 14, 2024
3a276f0
Remove old CI workflow.
christhekeele Apr 14, 2024
e0c0265
Trigger first edge run.
christhekeele Apr 14, 2024
e5fc33b
Prepare to release pre-release version to validate handoff.
christhekeele May 29, 2024
3a31771
Revert to more reliable erlang version parsing
christhekeele Jun 2, 2024
ee72867
Get smart about release action inputs later, but do run tests.
christhekeele Jun 2, 2024
7b18537
Produce debug info in all contexts.
christhekeele Jun 5, 2024
d54374a
Release v0.2.7
christhekeele Jun 20, 2024
986860d
Handle elixir version deprecations in nimble_parsec
christhekeele Jun 20, 2024
a16d7c7
Handle elixir version deprecations in credo
christhekeele Jun 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .check.exs

This file was deleted.

3 changes: 2 additions & 1 deletion .credo.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
excluded: [
"mix.exs",
"_build/",
"deps/",
".git/"
]
},
Expand All @@ -18,7 +19,7 @@
{Credo.Check.Readability.MaxLineLength, false},
{Credo.Check.Readability.PreferImplicitTry, false},
{Credo.Check.Refactor.ABCSize},
{Credo.Check.Refactor.PipeChainStart},
{Credo.Check.Refactor.PipeChainStart}
]
}
]
Expand Down
2 changes: 1 addition & 1 deletion .formatter.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used by "mix format"
[
inputs: ["mix.exs", "{config,lib,test}/**/*.{ex,exs}"]
inputs: ["*.exs", "{config,lib,test}/**/*.{ex,exs}"]
]
Loading
Loading