Skip to content

Commit af6d753

Browse files
authored
Merge pull request #14 from vajahath/typescriptify
Typescriptify
2 parents 36842cc + c3c93a9 commit af6d753

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+3008
-1242
lines changed

.editorconfig

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
# top-most EditorConfig file
2-
root = true
3-
4-
[*]
5-
charset = utf-8
6-
end_of_line = crlf
7-
trim_trailing_whitespace = true
8-
insert_final_newline = true
9-
indent_style = tab
10-
indent_size = 4
11-
12-
[*{.json,.yml}]
13-
indent_style = space
14-
indent_size = 2
1+
# top-most EditorConfig file
2+
root = true
3+
4+
insert_final_newline = true
5+
tab_width = 4
6+
7+
[*.js]
8+
indent_style = tab
9+
indent_size = tab
10+
11+
[*.ts]
12+
indent_style = tab
13+
indent_size = tab

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.gitignore

Lines changed: 41 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,41 @@
1-
.idea/
2-
.vscode/
3-
4-
# Logs
5-
logs
6-
*.log
7-
npm-debug.log*
8-
9-
# Runtime data
10-
pids
11-
*.pid
12-
*.seed
13-
14-
# Directory for instrumented libs generated by jscoverage/JSCover
15-
lib-cov
16-
17-
# Coverage directory used by tools like istanbul
18-
coverage
19-
20-
# nyc test coverage
21-
.nyc_output
22-
23-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24-
.grunt
25-
26-
# node-waf configuration
27-
.lock-wscript
28-
29-
# Compiled binary addons (http://nodejs.org/api/addons.html)
30-
build/Release
31-
32-
# Dependency directories
33-
node_modules
34-
jspm_packages
35-
36-
# Optional npm cache directory
37-
.npm
38-
39-
# Optional REPL history
40-
.node_repl_history
1+
mocha-insights/
2+
credentials/
3+
dist/
4+
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
15+
# Directory for instrumented libs generated by jscoverage/JSCover
16+
lib-cov
17+
18+
# Coverage directory used by tools like istanbul
19+
coverage
20+
21+
# nyc test coverage
22+
.nyc_output
23+
24+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
25+
.grunt
26+
27+
# node-waf configuration
28+
.lock-wscript
29+
30+
# Compiled binary addons (http://nodejs.org/api/addons.html)
31+
build/Release
32+
33+
# Dependency directories
34+
node_modules
35+
jspm_packages
36+
37+
# Optional npm cache directory
38+
.npm
39+
40+
# Optional REPL history
41+
.node_repl_history

.jsbeautifyrc

Lines changed: 0 additions & 19 deletions
This file was deleted.

.npmignore

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
1-
media/
2-
.jsbeautifyrc
3-
.eslintrc.yml
4-
.travis.yml
5-
test.js
6-
tests/
7-
.vscode/
8-
.editorconfig
9-
.eslintignore
10-
.gitignore
11-
.idea/
1+
.vscode/
2+
accessories/
3+
*.map
4+
mocha-insights/
5+
credentials/
6+
media/
7+
node_modules/
8+
src/
9+
tests/
10+
./typings/
11+
.editorconfig
12+
.gitignore
13+
.eslintignore
14+
.eslintrc.yml
15+
.npmignore
16+
.prettierignore
17+
.prettierrc
18+
.travis.yml
19+
.yo-rc.json
20+
tsconfig.json
21+
tslint.json
22+
gulpfile.ts

.prettierignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package.json
2+
dist
3+
src/views
4+
src/public
5+
node_modules
6+
*.yaml
7+
*.yml
8+
*.sh
9+
*.html
10+
*.lock
11+
*.ejs
12+
*.*-
13+
*.sql

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"trailingComma": "all",
3+
"useTabs": true,
4+
"singleQuote": true,
5+
"tabWidth": 4,
6+
"semi": true
7+
}

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ sudo: false
22
language: node_js
33
node_js:
44
- "node"
5-
- "4.3"
6-
- "4"
7-
- "5"
85
- "6"
96
script:
107
- npm run lint && npm run test

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// Use IntelliSense to learn about possible Node.js debug attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [{
7+
"type": "node",
8+
"request": "launch",
9+
"name": "Debug",
10+
"program": "${workspaceRoot}/dist/index.js",
11+
"smartStep": true,
12+
"outFiles": [
13+
"../dist/**/*.js"
14+
],
15+
"protocol": "inspector"
16+
}]
17+
}

0 commit comments

Comments
 (0)