Skip to content

Commit 972b331

Browse files
fix lint
1 parent 2603cd8 commit 972b331

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/devextreme-schematics/src/add-layout/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ async function addPolyfills(host: Tree, project: string, polyfills: string[]) {
188188
if (!buildOptions.polyfills.includes(polyfill)) {
189189
buildOptions.polyfills.push(polyfill);
190190
}
191-
})
191+
});
192192

193193
return config;
194194
});

packages/devextreme-schematics/src/utility/change.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export function insertItemToArray(
4343

4444
item = newLine + item;
4545

46-
const isNodeEmpty =!(
46+
const isNodeEmpty = !(
4747
nodeContent.includes('=')
4848
? /=\s*\[[\s\S]*\S+[\s\S]*\]/m
4949
: /\[[\s\S]*\S+[\s\S]*\]/m

0 commit comments

Comments
 (0)