|
1 | 1 | # Architecture
|
2 | 2 |
|
3 |
| -## CLI Architecture |
| 3 | +tslint-to-eslint-config is a heavily tested CLI app that uses rudimentary [dependency injection](https://wikipedia.org/wiki/Dependency_injection) to link functions together. |
4 | 4 |
|
5 |
| -1. CLI usage starts in `bin/tslint-to-eslint-config`, which immediately calls `src/cli/main.ts`. |
6 |
| -2. CLI settings are parsed and read in `src/cli/runCli.ts`. |
7 |
| -3. Linter configuration conversion is run by `src/conversion/convertLintConfig.ts`. |
8 |
| -4. Editor configuration conversion is run by `src/conversion/convertEditorConfig.ts`. |
| 5 | +The initial application flow starts in `bin/tslint-to-eslint-config`: |
9 | 6 |
|
10 |
| -## Linter Configuration Conversion |
| 7 | +1. `src/cli/main.ts`'s `main` is called with `process.argv` as the program arguments. |
| 8 | + * This file sets up all function dependencies and bound functions that call to each other. |
| 9 | +2. `src/cli/runCli.ts`'s `runCli` is called with those bound dependencies and raw arguments. |
11 | 10 |
|
12 |
| -Within `src/conversion/convertLintConfig.ts`, the following steps occur: |
| 11 | +> See [Dependencies.md](./Dependencies.md) for more info on dependency bindings. |
13 | 12 |
|
14 |
| -1. Existing configurations are read from disk |
15 |
| -2. TSLint rules are converted into their ESLint configurations |
16 |
| -3. ESLint configurations are summarized based on extended ESLint and TSLint presets |
17 |
| - - 3a. If no output rules conflict with `eslint-config-prettier`, it's added in |
18 |
| - - 3b. Any ESLint rules that are configured the same as an extended preset are trimmed |
19 |
| -4. The summarized configuration is written to the output config file |
20 |
| -5. Files to transform comments in have source text rewritten using the cached rule conversion results |
21 |
| -6. A summary of the results is printed to the user's console |
| 13 | +## CLI Runner |
22 | 14 |
|
23 |
| -### Conversion Results |
| 15 | +1. CLI options are parsed from the raw arguments into a commands object. |
| 16 | +2. If the version should be printed, we do that and stop execution. |
| 17 | +3. Any existing linter and TypeScript configurations are read from disk. |
| 18 | +4. Each converter is run, halting execution if it fails. |
24 | 19 |
|
25 |
| -The overall configuration generated by steps 2-3 and printed in 4-5 contains the following information: |
| 20 | +## Converters |
26 | 21 |
|
27 |
| -### Rule Converters |
| 22 | +Within that flow, there are three "root-level" converters directly called by `runCli`, in order: |
28 | 23 |
|
29 |
| -Each TSLint rule should output at least one ESLint rule as the equivalent. |
30 |
| -"Converters" for TSLint rules are located in `src/rules/converters/`, and keyed under their names by the map in `src/rules/converters.ts`. |
31 |
| - |
32 |
| -Each converter for a TSLint rule takes an arguments object for the rule, and returns an array of objects containing: |
33 |
| - |
34 |
| -- `rules`: At least one equivalent ESLint rule and options |
35 |
| -- `notices`: Any extra info that should be printed after conversion |
36 |
| -- `plugins`: Any plugins that should now be installed if not already |
37 |
| - |
38 |
| -The `rules` output is an array of objects containing: |
39 |
| - |
40 |
| -- `ruleName`: Equivalent ESLint rule name that should be enabled |
41 |
| -- `ruleArguments`: Any arguments for that ESLint rule |
42 |
| - |
43 |
| -Multiple objects must be supported because some general-use TSLint rules can only be represented by two or more ESLint rules. |
44 |
| -For example, TSLint's `no-banned-terms` is represented by ESLint's `no-caller` and `no-eval`. |
45 |
| - |
46 |
| -### Rule Mergers |
47 |
| - |
48 |
| -It's possible that one ESLint rule will be output by multiple converters. |
49 |
| -"Mergers" for those ESLint rules should take in two configurations to the same rule and output the equivalent single configuration. |
50 |
| -These are located in `src/rules/mergers/`, and keyed under their names by the map in `src/rules/mergers.ts`. |
51 |
| - |
52 |
| -For example, `@typescript-eslint/ban-types` spreads both arguments' `types` members into one large `types` object. |
53 |
| - |
54 |
| -## Editor Configuration Conversion |
55 |
| - |
56 |
| -Editor lint configurations are converted by `src/editorSettings/convertEditorSettings.ts`. |
57 |
| -Any setting that matches a known built-in TSLint setting will be replaced with the ESLint equivalent. |
| 24 | +1. **[Linters.md](./Linters.md)**: Converting from an original TSLint configuration to the equivalent TSLint configuration. |
| 25 | +2. **[Editors.md](./Editors.md)**: Creating new IDE settings for ESLint equivalent to any existing TSLint settings. |
| 26 | +3. **[Comments.md](./Comments.md)**: Converting inline `tslint:disable` lint disable comments to their `eslint-disable` equivalents. |
0 commit comments