Skip to content

Commit 979d728

Browse files
authored
Merge pull request #50 from github/update-dependencies
Update dependencies
2 parents 5d46df5 + 2f234f5 commit 979d728

File tree

7 files changed

+6103
-3923
lines changed

7 files changed

+6103
-3923
lines changed

.eslintrc.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
2+
"plugins": ["github"],
23
"extends": [
34
"plugin:github/browser",
4-
"plugin:github/es6",
5+
"plugin:github/recommended",
56
"plugin:github/typescript"
67
],
78
"globals": {
@@ -11,7 +12,10 @@
1112
{
1213
"files": "test/**/*.js",
1314
"rules": {
14-
"github/unescaped-html-literal": "off"
15+
"github/no-inner-html": "off",
16+
"github/unescaped-html-literal": "off",
17+
"import/extensions": "off",
18+
"import/no-unresolved": "off"
1519
}
1620
}
1721
]

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v1
18-
- name: Use Node.js 12.x
18+
- name: Use Node.js 16.x
1919
uses: actions/setup-node@v1
2020
with:
21-
node-version: 12.x
21+
node-version: 16.x
2222
- name: npm install, build, and test
2323
run: |
2424
npm install

0 commit comments

Comments
 (0)