Skip to content

Commit

Permalink
Feature/typescript conversion (#1)
Browse files Browse the repository at this point in the history
* Removed demo and test files;

* Added editor and typescript config files;
Added package.json;
Improved .gitignore with common contents;

* Converted sudoku.js to typescript;
Added enums and interfaces;
Added sudoku.js as legacy;
  • Loading branch information
jankreimeier authored Sep 28, 2022
1 parent b4db211 commit e485828
Show file tree
Hide file tree
Showing 32 changed files with 875 additions and 3,492 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Editor configuration, see https://editorconfig.org
root = true

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

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
# Specifies intentionally untracked files to ignore when using Git
# http://git-scm.com/docs/gitignore

*~
*.sw[mnpcod]
.tmp
*.tmp
*.tmp.*
*.sublime-project
*.sublime-workspace
.DS_Store
Thumbs.db
UserInterfaceState.xcuserstate
$RECYCLE.BIN/

*.log
log.txt
npm-debug.log*

/.git
/.idea
/.sass-cache
/.sourcemaps
/.versions
/.vscode
/coverage
/dist
/node_modules

.c9revisions
ref
archive
2 changes: 0 additions & 2 deletions demo/.gitignore

This file was deleted.

6 changes: 0 additions & 6 deletions demo/README.md

This file was deleted.

9 changes: 0 additions & 9 deletions demo/assets/css/bootstrap-responsive.min.css

This file was deleted.

9 changes: 0 additions & 9 deletions demo/assets/css/bootstrap.min.css

This file was deleted.

50 changes: 0 additions & 50 deletions demo/assets/css/styles.css

This file was deleted.

Binary file not shown.
Binary file removed demo/assets/ico/apple-touch-icon-144-precomposed.png
Binary file not shown.
Binary file removed demo/assets/ico/apple-touch-icon-57-precomposed.png
Binary file not shown.
Binary file removed demo/assets/ico/apple-touch-icon-72-precomposed.png
Binary file not shown.
Binary file removed demo/assets/ico/favicon.ico
Binary file not shown.
Empty file.
Binary file removed demo/assets/img/glyphicons-halflings.png
Binary file not shown.
Binary file removed demo/assets/img/pacman.gif
Binary file not shown.
Loading

0 comments on commit e485828

Please sign in to comment.