File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
packages/angular_devkit/build_angular/src/tslint Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,11 @@ async function _run(
26
26
options : TslintBuilderOptions ,
27
27
context : BuilderContext ,
28
28
) : Promise < BuilderOutput > {
29
+ context . logger . warn (
30
+ `TSLint's support is discontinued and we're deprecating its support in Angular CLI.\n` +
31
+ 'To opt-in using the community driven ESLint builder, see: https://github.com/angular-eslint/angular-eslint#migrating-from-codelyzer-and-tslint.' ,
32
+ ) ;
33
+
29
34
const systemRoot = context . workspaceRoot ;
30
35
process . chdir ( context . currentDirectory ) ;
31
36
const projectName = ( context . target && context . target . project ) || '<???>' ;
@@ -134,6 +139,7 @@ async function _run(
134
139
}
135
140
136
141
142
+ /** @deprecated since version 11 as part of the TSLint deprecation. */
137
143
export default createBuilder < TslintBuilderOptions > ( _run ) ;
138
144
139
145
You can’t perform that action at this time.
0 commit comments