Skip to content

Commit 852350c

Browse files
fix formatting
1 parent 1add4cd commit 852350c

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

packages/devextreme-cli/src/applications/application.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const create = async(appName, options) => {
6363
const templateOptions = Object.assign({}, options, {
6464
project: stringUtils.humanize(appName),
6565
layout: stringUtils.classify(layoutType),
66-
isTypeScript: typescriptUtils.isTypeScript(templateType),
66+
isTypeScript: typescriptUtils.isTypeScript(templateType)
6767
});
6868

6969
const toolingVersion = extractToolingVersion(options);

packages/devextreme-cli/testing/linting.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,12 @@ const customLint = async(env) => {
4848
};
4949

5050
async function lint(env) {
51-
52-
if(env.engine.startsWith('vue') || env.engine.startsWith('react')) {
53-
await projectLint(env.engine);
54-
} else {
51+
if(env.engine.startsWith('angular')) {
5552
await customLint(env);
53+
} else {
54+
await projectLint(env.engine);
5655
}
57-
};
56+
}
5857

5958
(async function lintProcess() {
6059
const filteredEnvs = args.e === 'all'

0 commit comments

Comments
 (0)