Skip to content

Commit b59a4ca

Browse files
codebytereBridgeAR
andauthored
Only run lint on non-windows platforms
Co-authored-by: Ruben Bridgewater <[email protected]>
1 parent 4402e36 commit b59a4ca

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/landing_session.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ class LandingSession extends Session {
106106
async validateLint() {
107107
const { cli } = this;
108108

109+
if (os.platform() === 'win32') {
110+
// The linter is currently only run on non-Windows platforms.
111+
return true;
112+
}
109113
const linted = await runAsync('make', ['lint']);
110114
if (!linted) {
111115
cli.warn('There are lint errors in your patch. ' +

0 commit comments

Comments
 (0)