File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed
angular_devkit/build_angular/src Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 101
101
102
102
/* TODO: evaluate usage of these rules and fix issues as needed */
103
103
"no-case-declarations" : " off" ,
104
- "no-fallthrough" : " off" ,
105
104
"no-underscore-dangle" : " off" ,
106
105
"@typescript-eslint/ban-types" : " off" ,
107
106
"@typescript-eslint/no-implied-eval" : " off" ,
Original file line number Diff line number Diff line change @@ -42,8 +42,8 @@ export async function normalizeOptions(
42
42
// Normalize xliff format extensions
43
43
let format = options . format ;
44
44
switch ( format ) {
45
- case undefined :
46
45
// Default format is xliff1
46
+ case undefined :
47
47
case Format . Xlf :
48
48
case Format . Xlif :
49
49
case Format . Xliff :
Original file line number Diff line number Diff line change @@ -42,8 +42,8 @@ export async function normalizeOptions(
42
42
// Normalize xliff format extensions
43
43
let format = options . format ;
44
44
switch ( format ) {
45
- case undefined :
46
45
// Default format is xliff1
46
+ case undefined :
47
47
case Format . Xlf :
48
48
case Format . Xlif :
49
49
case Format . Xliff :
Original file line number Diff line number Diff line change @@ -200,8 +200,7 @@ export default custom<ApplicationPresetOptions>(() => {
200
200
case 'error' :
201
201
this . emitError ( message ) ;
202
202
break ;
203
- case 'info' :
204
- // Webpack does not currently have an informational diagnostic
203
+ case 'info' : // Webpack does not currently have an informational diagnostic
205
204
case 'warning' :
206
205
this . emitWarning ( message ) ;
207
206
break ;
You can’t perform that action at this time.
0 commit comments