Skip to content

Commit

Permalink
WIP: simple [%test] ppx using ReasonML
Browse files Browse the repository at this point in the history
  • Loading branch information
bikallem committed May 16, 2019
1 parent 47e8080 commit 53c7e22
Show file tree
Hide file tree
Showing 66 changed files with 3,702 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
@@ -0,0 +1,11 @@
npm-debug.log
.merlin
yarn-error.log
node_modules
node_modules/
_build
_release
_esy/
concurrent-servers.install
.DS_Store
*.install
43 changes: 43 additions & 0 deletions .ocamlformat
@@ -0,0 +1,43 @@
profile=ocamlformat
quiet=false
max-iters=10
comment-check=true
wrap-fun-args=true
wrap-comments=false
type-decl=compact
space-around-collection-expressions=true
single-case=sparse
sequence-style=separator
parse-docstrings=true
parens-tuple-patterns=always
parens-tuple=always
parens-ite=false
ocp-indent-compat=false
module-item-spacing=sparse
margin=80
let-open=preserve
let-binding-spacing=compact
let-and=compact
leading-nested-match-parens=false
infix-precedence=indent
indicate-nested-or-patterns=space
indicate-multiline-delimiters=true
if-then-else=compact
field-space=tight
extension-sugar=preserve
escape-strings=preserve
escape-chars=preserve
doc-comments-tag-only=default
doc-comments-padding=2
doc-comments=after
disable=false
cases-exp-indent=4
break-struct=force
break-string-literals=wrap
break-sequences=false
break-separators=before
break-infix-before-func=false
break-infix=wrap
break-fun-decl=fit-or-vertical
break-collection-expressions=fit-or-vertical
break-cases=all
3 changes: 3 additions & 0 deletions dune-project
@@ -0,0 +1,3 @@
(lang dune 1.9)
(using fmt 1.1)
(name ppx-lab)
3 changes: 3 additions & 0 deletions esy.lock/.gitattributes
@@ -0,0 +1,3 @@

# Set eol to LF so files aren't converted to CRLF-eol on Windows.
* text eol=lf
3 changes: 3 additions & 0 deletions esy.lock/.gitignore
@@ -0,0 +1,3 @@

# Reset any possible .gitignore, we want all esy.lock to be un-ignored.
!*

0 comments on commit 53c7e22

Please sign in to comment.