tslint-to-eslint-config
tslint-to-eslint-config copied to clipboard
Converts your TSLint configuration to the closest possible ESLint equivalent. 🚀
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/typescript-eslint/tslint-to-eslint-config). ## Config Migration Needed - [ ]...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [jest](https://jestjs.io/) ([source](https://togithub.com/facebook/jest)) | [`27.5.1` -> `29.3.1`](https://renovatebot.com/diffs/npm/jest/27.5.1/29.3.1) |...
### 🐛 Bug Report - `tslint-to-eslint-config` version: `2.13.0` - ESLint version: N/A - Node version: `16.15.0` #### Actual Behavior Found when updating angular-eslint's usage of tslint-to-eslint-config See my minimal repro,...
## PR Checklist - [x] Addresses an existing issue: Fixes #647 - [x] That issue was marked as [`status: accepting prs`](https://github.com/typescript-eslint/tslint-to-eslint-config/labels/status%3A%20accepting%20prs) ## Overview Simply adds support for the `ordered-imports` option....
`PascalCase` and `snake_case` configuration options never get migrated to eslint because `formats` variable is not used anywhere. See: https://github.com/typescript-eslint/tslint-to-eslint-config/blob/7c92c875a43018c7f5011283cf14da2a173a698f/src/converters/lintConfigs/rules/ruleConverters/variable-name.ts#L40-L63
### 💥 Missing Merger - `tslint-to-eslint-config` version: 2.12.3 - ESLint version: ^8.12.0 #### CLI Output ``` ❌ 1 error thrown. ❌ Check ./tslint-to-eslint-config.log for details. ``` #### File Output ```...
### 🚀 Feature Request The script swaps in `import/order` for tslint's `ordered-imports`. I spent quite a while trying to configure it to sort things like tslint's rule did, before discovering...
### 💥 Missing Converter - `tslint-to-eslint-config` version: 2.10.1 - `typescript-eslint` version: N/A #### TSLint Rule Name Everything listed under https://github.com/jwbay/tslint-misc-rules, except [class-method-newlines](https://github.com/typescript-eslint/tslint-to-eslint-config/issues/1355#). I'm making one issue for all the rules...
### 💥 Missing Merger - `tslint-to-eslint-config` version: X.X.X - ESLint version: X.X.X #### CLI Output ``` ✨ 191 rules replaced with their ESLint equivalents. ✨ ❗ 6 ESLint rules behave...
### Overview TSLint's `one-line` is more narrow in scope than ESLint's `brace-style` in the sense that ESLint will error on single line blocks by default. Example code that errors under...