mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-26 09:21:51 +08:00
74 lines
2.4 KiB
TypeScript
74 lines
2.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import {
|
|
Rule,
|
|
Tree,
|
|
} from '@angular-devkit/schematics';
|
|
import {
|
|
NodeDependency,
|
|
NodeDependencyType,
|
|
addPackageJsonDependency,
|
|
} from '../../utility/dependencies';
|
|
import { JSONFile } from '../../utility/json-file';
|
|
|
|
const ruleMapping: {[key: string]: string} = {
|
|
'contextual-life-cycle': 'contextual-lifecycle',
|
|
'no-conflicting-life-cycle-hooks': 'no-conflicting-lifecycle',
|
|
'no-life-cycle-call': 'no-lifecycle-call',
|
|
'use-life-cycle-interface': 'use-lifecycle-interface',
|
|
'decorator-not-allowed': 'contextual-decorator',
|
|
'enforce-component-selector': 'use-component-selector',
|
|
'no-output-named-after-standard-event': 'no-output-native',
|
|
'use-host-property-decorator': 'no-host-metadata-property',
|
|
'use-input-property-decorator': 'no-inputs-metadata-property',
|
|
'use-output-property-decorator': 'no-outputs-metadata-property',
|
|
'no-queries-parameter': 'no-queries-metadata-property',
|
|
'pipe-impure': 'no-pipe-impure',
|
|
'use-view-encapsulation': 'use-component-view-encapsulation',
|
|
i18n: 'template-i18n',
|
|
'banana-in-box': 'template-banana-in-box',
|
|
'no-template-call-expression': 'template-no-call-expression',
|
|
'templates-no-negated-async': 'template-no-negated-async',
|
|
'trackBy-function': 'template-use-track-by-function',
|
|
'no-attribute-parameter-decorator': 'no-attribute-decorator',
|
|
'max-inline-declarations': 'component-max-inline-declarations',
|
|
};
|
|
|
|
export const updateTsLintConfig = (): Rule => {
|
|
return (host: Tree) => {
|
|
const tsLintPath = '/tslint.json';
|
|
let tsLintJson;
|
|
try {
|
|
tsLintJson = new JSONFile(host, tsLintPath);
|
|
} catch {
|
|
return;
|
|
}
|
|
|
|
for (const [existingRule, newRule] of Object.entries(ruleMapping)) {
|
|
const ruleValue = tsLintJson.get(['rules', existingRule]);
|
|
if (ruleValue !== undefined) {
|
|
tsLintJson.remove(['rules', existingRule]);
|
|
tsLintJson.modify(['rules', newRule], ruleValue as boolean);
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
export const updatePackageJson = () => {
|
|
return (host: Tree) => {
|
|
const dependency: NodeDependency = {
|
|
type: NodeDependencyType.Dev,
|
|
name: 'codelyzer',
|
|
version: '^5.0.1',
|
|
overwrite: true,
|
|
};
|
|
|
|
addPackageJsonDependency(host, dependency);
|
|
};
|
|
};
|