Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgobich committed Dec 18, 2021
0 parents commit 4df2d22
Show file tree
Hide file tree
Showing 11 changed files with 14,366 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .bin/test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require('@adonisjs/require-ts/build/register')

const { configure } = require('japa')

configure({
files: ['test/**/*.spec.ts'],
})
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# http://editorconfig.org

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.json]
insert_final_newline = ignore

[**.min.js]
indent_style = ignore
insert_final_newline = ignore

[MakeFile]
indent_style = space

[*.md]
trim_trailing_whitespace = false
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
node_modules
coverage
test/__app
.DS_STORE
.nyc_output
.idea
.vscode/
*.sublime-project
*.sublime-workspace
*.log
build
dist
shrinkwrap.yaml
10 changes: 10 additions & 0 deletions adonis-typings/honeypot.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
declare module 'Jagr/Honeypot' {
export type HoneypotConfig = {
fields: string[]
flashOnFailure: boolean
flashMessage: string | null
flashKey: string | null
redirectOnFailure: boolean
redirectTo: string | null
}
}
Loading

0 comments on commit 4df2d22

Please sign in to comment.