Skip to content

Commit

Permalink
Rewrite application in TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximDevoir committed Oct 30, 2019
1 parent e1281dc commit ecd0cff
Show file tree
Hide file tree
Showing 14 changed files with 3,199 additions and 18 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

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

[*.md]
trim_trailing_whitespace = false
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
templates/**
bin/**
coverage/**
14 changes: 14 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.all.json",
// Memory leak when lots of files exist, or lots of files are being added.
// This can occur when running the linter while `./script/test` is adding a
// bunch of new files.
//
// See: https://github.com/typescript-eslint/typescript-eslint/issues/1080
"noWatch": true
},
"plugins": ["@typescript-eslint"],
"extends": ["plugin:@typescript-eslint/recommended"]
}
15 changes: 11 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Dependencies
node_modules

# Log files
# Output folder
bin

# Logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
debug.log

# Lockfiles
package-lock.json
# Yarn lockfile. Use package-lock.json instead.
yarn.lock

# Temporary directory for testing
# Test-related generated folders
tmp
coverage

# Miscellaneous
.DS_Store
Thumbs.db
Loading

0 comments on commit ecd0cff

Please sign in to comment.