Skip to content

Commit 652d950

Browse files
committed
Fix LF end of line Windows linter error
1 parent 4a9868e commit 652d950

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"build": "tsc",
88
"format": "prettier --write **/*.ts",
9-
"format-check": "prettier --check **/*.ts",
9+
"format-check": "prettier --end-of-line auto --check **/*.ts",
1010
"pack": "ncc build",
1111
"test": "jest"
1212
},

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ async function run() {
88
if (version) {
99
await installer.getArduinoCli(version);
1010
}
11-
} catch (error) {
11+
} catch (error: any) {
1212
core.setFailed(error.message);
1313
}
1414
}

0 commit comments

Comments
 (0)