We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 44756f0 + 31c17cc commit 5d474d5Copy full SHA for 5d474d5
libs/ddd/src/schematics/utils/update-dep-const.ts
@@ -13,9 +13,15 @@ export function updateDepConst(
13
if (host.exists('.eslintrc.json')) {
14
filePath = '.eslintrc.json';
15
rule = '@nrwl/nx/enforce-module-boundaries';
16
+ context.logger.info(
17
+ 'Found .eslintrc.json'
18
+ );
19
} else if (host.exists('.eslintrc')) {
20
filePath = '.eslintrc';
21
22
23
+ 'Did not find .eslintrc.json but found .eslintrc'
24
25
} else {
26
context.logger.info(
27
'Cannot add linting rules: linting config file does not exist'
0 commit comments