* feat(linter): convert-tslint-to-eslint generators * fix(core): remove generators in collection for ng and nest * fix(core): update tao to support mixed generators and schematics * fix(core): update tao to support mixed generators and schematics * fix(core): address some PR feedback * fix(core): fix snapshots after syncing up with master * feat(core): store user preference for removeTSLintIfNoMoreTSLintTargets * fix(linter): unit tests * feat(core): apply root tslint.json conversion to root .eslintrc.json
48 lines
883 B
Markdown
48 lines
883 B
Markdown
# convert-tslint-to-eslint
|
|
|
|
Convert a project from TSLint to ESLint
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
nx generate convert-tslint-to-eslint ...
|
|
```
|
|
|
|
By default, Nx will search for `convert-tslint-to-eslint` in the default collection provisioned in `angular.json`.
|
|
|
|
You can specify the collection explicitly as follows:
|
|
|
|
```bash
|
|
nx g @nrwl/nest:convert-tslint-to-eslint ...
|
|
```
|
|
|
|
Show what will be generated without writing to disk:
|
|
|
|
```bash
|
|
nx g convert-tslint-to-eslint ... --dry-run
|
|
```
|
|
|
|
### Examples
|
|
|
|
Convert the NestJS project `myapp` from TSLint to ESLint:
|
|
|
|
```bash
|
|
nx g convert-tslint-to-eslint myapp
|
|
```
|
|
|
|
## Options
|
|
|
|
### project
|
|
|
|
Type: `string`
|
|
|
|
The name of the NestJS project to convert.
|
|
|
|
### removeTSLintIfNoMoreTSLintTargets
|
|
|
|
Default: `true`
|
|
|
|
Type: `boolean`
|
|
|
|
If this conversion leaves no more TSLint usage in the workspace, it will remove TSLint and related dependencies and configuration
|