Skip to content

Commit 0fe66a9

Browse files
authored
Merge pull request #623 from microsoftgraph/release/3.0.2
Release/3.0.2
2 parents 5cf1dec + 6e7a8bc commit 0fe66a9

19 files changed

+3367
-2045
lines changed

.eslintrc.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@
99
"@typescript-eslint/no-unused-vars": "error",
1010
"@typescript-eslint/no-explicit-any": "off",
1111
"@typescript-eslint/explicit-module-boundary-types": "off",
12-
"prettier/prettier": "error",
12+
"prettier/prettier": [
13+
"error",
14+
{
15+
"endOfLine": "auto"
16+
}
17+
],
1318
"@typescript-eslint/no-var-requires": "error",
1419
"@typescript-eslint/no-non-null-assertion": "error",
1520
"@typescript-eslint/naming-convention": [

.github/dependabot.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 10
8+
- package-ecosystem: github-actions
9+
directory: "/"
10+
schedule:
11+
interval: weekly
12+
open-pull-requests-limit: 10

.github/workflows/ci_validation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v1
19+
uses: actions/setup-node@v2.5.1
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222
- run: npm ci

0 commit comments

Comments
 (0)