Skip to content

Commit

Permalink
refactor: move to typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
ybonnefond committed Jul 6, 2019
1 parent 9d4c915 commit 4a4710c
Show file tree
Hide file tree
Showing 60 changed files with 3,848 additions and 3,723 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ root = true

# Change these settings to your own preference
indent_style = space
indent_size = 4
indent_size = 2

# We recommend you to keep these unchanged
end_of_line = lf
Expand Down
265 changes: 0 additions & 265 deletions .eslintrc.json

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,6 @@ node_modules/
package-lock.json

.history

# Typescript compiled files
dist/
9 changes: 9 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"printWidth": 80,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "avoid"
}

0 comments on commit 4a4710c

Please sign in to comment.