Skip to content

Commit 0a49869

Browse files
committed
fix lint max 100
1 parent 4745a83 commit 0a49869

File tree

1 file changed

+4
-2
lines changed
  • packages/@angular/cli/models/webpack-configs

1 file changed

+4
-2
lines changed

packages/@angular/cli/models/webpack-configs/common.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ export function getCommonConfig(wco: WebpackConfigOptions) {
125125
}
126126

127127
if (asset.allowOutsideReadDir) {
128-
console.log(chalk.yellow('The allowOutsideReadDir option is on that could be a security risk'));
128+
console.log(chalk.yellow('The allowOutsideReadDir option'
129+
+ ' is on that could be a security risk'));
129130
}
130131

131132
// Ensure trailing slash.
@@ -199,7 +200,8 @@ export function getCommonConfig(wco: WebpackConfigOptions) {
199200
: 'rxjs/_esm5/path-mapping';
200201
const rxPaths = requireProjectModule(projectRoot, rxjsPathMappingImport);
201202
alias = rxPaths(nodeModules);
202-
} catch (e) { }
203+
} catch (e) {
204+
}
203205

204206
// Allow loaders to be in a node_modules nested inside the CLI package
205207
const loaderNodeModules = ['node_modules'];

0 commit comments

Comments
 (0)