Skip to content

Commit 8aad84e

Browse files
authored
Merge pull request #369 from saulotoledo/develop
Sync master back onto develop branch
2 parents cdd78ad + 36f8a98 commit 8aad84e

30 files changed

+5333
-5729
lines changed

.editorconfig

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

.eslintrc.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
parser: "@typescript-eslint/parser",
7+
parserOptions: {
8+
project: ['./tsconfig.json']
9+
},
10+
plugins: [
11+
"@typescript-eslint"
12+
],
13+
extends: [
14+
"eslint:recommended",
15+
"plugin:@typescript-eslint/eslint-recommended",
16+
"plugin:@typescript-eslint/recommended",
17+
"plugin:@typescript-eslint/recommended-requiring-type-checking"
18+
],
19+
ignorePatterns: ["**/*.js"],
20+
rules: {
21+
"no-case-declarations": "off",
22+
"@typescript-eslint/no-inferrable-types": "off",
23+
"@typescript-eslint/no-non-null-assertion": "off",
24+
"@typescript-eslint/no-unused-vars": "off",
25+
"@typescript-eslint/no-explicit-any": "off",
26+
"@typescript-eslint/member-delimiter-style": "off",
27+
"@typescript-eslint/member-ordering": "error",
28+
"@typescript-eslint/unbound-method": ["error", {
29+
"ignoreStatic": true
30+
}]
31+
}
32+
};

.github/workflows/nodejs.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Node.js CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
node-version: [8.x, 10.x, 12.x]
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Use Node.js ${{ matrix.node-version }}
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: ${{ matrix.node-version }}
19+
- run: npm install
20+
- run: npm run build
21+
- run: npm test
22+
env:
23+
CI: true

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
language: node_js
22
node_js:
33
- stable
4+
- 12
5+
- 10
46
- 8
57

68
after_success:

codecov.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

gulpfile.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

gulpfile.ts

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

0 commit comments

Comments
 (0)