-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from mrodrig/tsify
Migrate to TypeScript
- Loading branch information
Showing
21 changed files
with
5,118 additions
and
888 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
es2022: true, | ||
node: true, | ||
mocha: true, | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 13, | ||
project: ['tsconfig.json'], | ||
sourceType: 'module', | ||
tsconfigRootDir: __dirname, | ||
}, | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:import/errors', | ||
'plugin:import/warnings', | ||
'plugin:import/typescript', | ||
'plugin:@typescript-eslint/recommended', | ||
], | ||
parser: '@typescript-eslint/parser', | ||
ignorePatterns: [ | ||
'/lib/**/*', // Ignore built files. | ||
], | ||
plugins: [ | ||
'@typescript-eslint', | ||
'import', | ||
], | ||
rules: { | ||
// Basic ES6 | ||
indent: [ | ||
'error', 4, { // use 4 spaces for indents | ||
'SwitchCase': 1, // indent case within switch | ||
} | ||
], | ||
'linebreak-style': 0, // mixed environment let git config enforce line endings | ||
quotes: ['error', 'single'], | ||
semi: ['error', 'always'], | ||
'no-var': 'error', | ||
'no-console': 0, // allow use of console.log, | ||
'arrow-body-style': [0, 'always'], | ||
'max-len': 0, | ||
'camelcase': 1, | ||
'import/no-unresolved': [ | ||
'error', { | ||
// https://github.com/firebase/firebase-admin-node/discussions/1359 | ||
ignore: ['^firebase-admin/.+'], | ||
}, | ||
], | ||
'@typescript-eslint/consistent-type-definitions': 'warn' | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Automated Node Version Tests | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
node: [16, 18, 19] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node ${{ matrix.node }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: Install NPM Modules | ||
run: npm ci | ||
- name: Lint | ||
run: npm run lint | ||
- name: Test | ||
run: | | ||
npm run coverage | ||
- name: Coveralls Parallel | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.github_token }} | ||
flag-name: node-${{ runner.os }}-${{ matrix.node }} | ||
parallel: true | ||
|
||
coveralls-finished: | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Coveralls Finished | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.github_token }} | ||
parallel-finished: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,15 @@ | ||
# Created by .gitignore support plugin (hsz.mobi) | ||
### Node template | ||
# Logs | ||
logs | ||
*.log | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
.nyc_output | ||
|
||
# Dependency directory | ||
# Commenting this out is preferred by some people, see | ||
# https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git | ||
node_modules | ||
|
||
# Users Environment Variables | ||
.lock-wscript | ||
|
||
# Users Environment Configurations | ||
.idea | ||
|
||
test/CSV/* | ||
# Debug logs | ||
npm-debug.log | ||
|
||
# Built JavaScript files | ||
lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,32 @@ | ||
test/ | ||
.git* | ||
# Debug Logs | ||
npm-debug.log | ||
.travis.yml | ||
|
||
# Uncompiled Source Files | ||
src | ||
test | ||
|
||
# Node Modules | ||
node_modules/ | ||
node_modules/* | ||
|
||
# Configuration Files | ||
.eslintrc* | ||
tsconfig* | ||
|
||
# Test/Coverage Files | ||
coverage/ | ||
coverage/* | ||
demo | ||
.nycrc | ||
.nyc_output | ||
.nyc_output/* | ||
.coveralls.yml | ||
lib/test | ||
|
||
# Github Configuration Files | ||
_config.yml | ||
.git* | ||
|
||
# Extra documentation files | ||
upgrade_guides/* | ||
|
||
demo* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"check-coverage": true, | ||
"all": true, | ||
"include": [ | ||
"src/**/!(*.test.*).[tj]s?(x)" | ||
], | ||
"exclude": [ | ||
"test/**/*.*" | ||
], | ||
"reporter": [ | ||
"lcov", | ||
"text-summary", | ||
"text" | ||
], | ||
"report-dir": "coverage" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.