File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 23
23
no-dupe-class-members : off
24
24
" @typescript-eslint/no-use-before-define " : off
25
25
" @typescript-eslint/no-non-null-assertion " : off
26
+ eqeqeq : error
26
27
27
28
settings :
28
29
# Does not work with CommonJS unfortunately.
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ export const parse = (
172
172
const arg = argv [ i ]
173
173
174
174
// -- signals the end of option parsing.
175
- if ( ! ended && arg == "--" ) {
175
+ if ( ! ended && arg === "--" ) {
176
176
ended = true
177
177
continue
178
178
}
@@ -220,7 +220,7 @@ export const parse = (
220
220
throw error ( `--${ key } requires a value` )
221
221
}
222
222
223
- if ( option . type == OptionalString && value == "false" ) {
223
+ if ( option . type === OptionalString && value = == "false" ) {
224
224
continue
225
225
}
226
226
You can’t perform that action at this time.
0 commit comments