Skip to content

Commit 3e06f0f

Browse files
authored
docs: linting onboarding guides (typescript-eslint#1324)
1 parent 4f735e8 commit 3e06f0f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1106
-336
lines changed

.spelling

+126
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
# markdown-spellcheck spelling configuration file
2+
# Format - lines beginning # are comments
3+
# global dictionary is at the start, file overrides afterwards
4+
# one word per line, to define a file override use ' - filename'
5+
# where filename is relative to this configuration file
6+
1000s
7+
1pm
8+
30s
9+
A11y
10+
Airbnb
11+
Airbnb's
12+
ands
13+
API
14+
APIs
15+
ASI
16+
AST
17+
ASTs
18+
async
19+
autofixers
20+
backticks
21+
boolean
22+
booleans
23+
camelCase
24+
camelCasing
25+
CLI
26+
codebase
27+
codebases
28+
CommonJS
29+
config
30+
configs
31+
const
32+
Crockford
33+
declarators
34+
destructure
35+
destructured
36+
destructuring
37+
e.g.
38+
enum
39+
enums
40+
ES2015
41+
ES2016
42+
ES5
43+
ES6
44+
ESLint
45+
ESLint's
46+
eslintrc.js
47+
ESTree
48+
fallthrough
49+
falsy
50+
filenames
51+
heavy_check_mark
52+
i.e.
53+
IIFE
54+
IIFEs
55+
ing
56+
jQuery
57+
JS
58+
JSCS
59+
JSHint
60+
JSON
61+
JSX
62+
linebreak
63+
linters
64+
MDN
65+
monorepo
66+
monorepos
67+
multiline
68+
namespace
69+
namespaces
70+
natively
71+
necroing
72+
NodeJS
73+
npm
74+
nullish
75+
OOM
76+
OOMs
77+
onboard
78+
OSS
79+
package.json
80+
Palantir
81+
PascalCase
82+
PascalCased
83+
performant
84+
pluggable
85+
pre-ES6
86+
pre-parse
87+
pre-releases
88+
premade
89+
README
90+
readonly
91+
realtime
92+
RegExp#exec
93+
reimplement
94+
repo
95+
roadmap
96+
ruleset
97+
rulesets
98+
runtime
99+
searchable
100+
String#match
101+
substring
102+
substrings
103+
superset
104+
supertype
105+
syntaxes
106+
thenable
107+
thought_balloon
108+
timelines
109+
TODO
110+
transpile
111+
truthy
112+
tsconfig
113+
tsconfig.json
114+
tsconfigs
115+
TSLint
116+
typecheck
117+
typechecker
118+
typechecking
119+
TypeScript
120+
typings
121+
unfixable
122+
unprefixed
123+
untyped
124+
VSCode
125+
Vue
126+
whitespace

CONTRIBUTING.md

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# Contributing
2+
3+
## Raising Issues
4+
5+
Feel free to raise an issue if you have a question, an enhancement, or a bug report.
6+
7+
Please ensure you use the issue search functionality to search all **_opened and closed_** issues before raising a new issue.
8+
9+
When raising a new issue, please fill out the issue template - please don't skip sections.
10+
Please provide **_as much information as possible_**. This project is maintained by volunteers, so the more the more information you provide, the less likely we will have to waste everyone's time in asking you for more information.
11+
12+
**_Help us to help you_**
13+
14+
## Commenting
15+
16+
Feel free to comment on any open issue if you have more information that you feel like you can provide. If you don't have more information, instead use the "reaction" feature on the root comment for the issue. We use reactions to help gauge which issues are important to the community, so these are the best way to show us an issue is important.
17+
18+
Please refrain from leaving useless comments on issues. Comments like "+1", or "when's this getting fixed", or "any progress on this" just serve as spam, and annoy every single person subscribed to the issue. Generally we will just delete those comments, so save everyone time and think twice.
19+
20+
Please refrain from commenting on old, closed issues and PRs. Your issue is rarely related enough to a closed issue to warrant "necroing" a dead thread - raising a new issue means you can fill in the template, and make it easier for us to help you. Often times if you comment on a closed issue, we will just ask you to open a new issue, so please save everyone's time, and **_help us to help you_**.
21+
22+
Please refrain from commenting on `master` commits. Commit comments are not searchable, meaning that nobody else can discover your comments. Raise an issue and reference the commit instead so that everyone can see your comment, and you can fill out the template.
23+
24+
---
25+
26+
## Pull Requests
27+
28+
Anyone is free to help us build and maintain this project. If you see an issue that needs working on because it's important to you, comment on the issue to help make sure that nobody else works on it at the same time, and then start working.
29+
30+
Developing in this repo is easy:
31+
32+
- First fork the repo, and then clone it locally.
33+
- Create a new branch.
34+
- In the root of the project, run `yarn install`.
35+
- This will install the dependencies, link the packages and do a build.
36+
- Make the required changes.
37+
38+
### Validating Your Changes
39+
40+
We have a sophisticated CI process setup which gets run on every PR. You must pass all of the checks for us to consider merging your PR. Here is a list of checks that are done automatically, that you can also perform locally before pushing.
41+
42+
- Ensure your code is properly formatted.
43+
- You can run `yarn format` in any package or in the root.
44+
- Alternatively, you can run prettier on save.
45+
- Ensure there are no typechecking errors.
46+
- You can run `yarn typecheck` in any package or in the root.
47+
- Ensure your changes are adequately tested.
48+
- You can run `yarn test` in any package.
49+
- We aim for around `90%` branch coverage for every PR.
50+
- Coverage reports should automatically be generated locally, and the `codecov` bot should also comment on your PR with the percentage, as well as links to the line-by-line coverage of each file touched by your PR.
51+
- Ensure you have no lint errors.
52+
- You can run `yarn lint` in any package or in the root.
53+
- If you have made changes to any markdown documentation, ensure there are no spelling errors
54+
- You can run `yarn check:spelling` in the root.
55+
- If you have made changes within the `eslint-plugin` package, ensure the configs and documentation are valid.
56+
- You can run `yarn check:configs` and `yarn check:docs` in the root, or in the `eslint-plugin` folder.
57+
58+
### Raising a PR
59+
60+
Once your changes are ready, you can raise a PR. The title of your PR should match the following format:
61+
62+
```
63+
<tag>(<package>): <short description>
64+
```
65+
66+
Where `<tag>` is one of:
67+
68+
- `feat` - for any new functionality additions
69+
- `fix` - for any bug fixes that don't add new functionality
70+
- `test` - if you only change tests, and not shipped code
71+
- `docs` - if you only change documentation, and not shipped code
72+
- `chore` - anything else
73+
74+
And `<package>` is the name of the package you have made changes within (`eslint-plugin`, `parser`, `typescript-estree`, etc). If you make significant changes across multiple packages, you can omit this (i.e. `feat: foo bar`).
75+
76+
And `<short description>` is a succinct title for the PR.
77+
78+
Within the body of your PR, make sure you reference the issue that you have worked on, as well as a pointing out anything of note you wish us to look at during our review.
79+
80+
Make sure you use the "Fixes #xxx" format to reference issues, so that GitHub automatically closes the issues when we merge the PR. Also note that if you are fixing multiple issues at once, you can only reference one issue per line, and must put one "Fixes #xxx" per issue number.
81+
82+
In terms of your commit history - we do not care about the number, or style of commits in your history, because we squash merge every PR into master. Feel free to commit in whatever style you feel comfortable with.
83+
84+
**_One thing we ask is to please avoid force pushing after you have raised a PR_**. GitHub is not able to track changes across force pushes, which makes it impossible to efficiently do incremental reviews. This slows us down, and means it will take longer for us to get your PR merged.
85+
86+
### Addressing Feedback and Beyond
87+
88+
With your PR raised, and the CI showing green, your PR will [sit in the queue to be reviewed](https://github.com/typescript-eslint/typescript-eslint/pulls?q=is%3Apr+is%3Aopen+sort%3Acreated-asc+-label%3A%22breaking+change%22+-label%3A%22awaiting+response%22+-label%3A%221+approval%22+-label%3A%22DO+NOT+MERGE%22). We generally review PRs oldest to newest, unless we consider a newer PR higher priority (i.e. if it's a bug fix).
89+
90+
Please note that as this project is maintained by volunteers, it may take a while for us to get around to your PR (sometimes a month or more). Be patient, we'll get to it. Please refrain from commenting asking for a review, or similar bump comments. **_These just create spam for maintainers, and does not push your PR higher in the queue_**.
91+
92+
Once we have reviewed your PR, we will provide any feedback that needs addressing. If you feel a requested change is wrong, don't be afraid to discuss with us in the comments. Once the feedback is addressed, and the PR is reviewed, we'll ensure the branch is up to date with master, and merge it for you.

README.md

+9-10
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
- [What are ESLint and TypeScript, and how do they compare?](#what-are-eslint-and-typescript-and-how-do-they-compare)
2020
- [Why does this project exist?](#why-does-this-project-exist)
2121
- [What about TSLint?](#what-about-tslint)
22-
- [How does typescript-eslint work and why do you have multiple packages?](#how-does-typescript-eslint-work-and-why-do-you-have-multiple-packages)
22+
- [How does `typescript-eslint` work and why do you have multiple packages?](#how-does-typescript-eslint-work-and-why-do-you-have-multiple-packages)
2323
- [Can I use all of the existing ESLint plugins and rules without any changes?](#can-i-use-all-of-the-existing-eslint-plugins-and-rules-without-any-changes)
2424
- [Can we write rules which leverage type information?](#can-we-write-rules-which-leverage-type-information)
25-
- [What about Babel and babel-eslint?](#what-about-babel-and-babel-eslint)
25+
- [What about Babel and `babel-eslint`?](#what-about-babel-and-babel-eslint)
2626
- [How can I help?](#how-can-i-help)
27-
- [How do I configure my project to use typescript-eslint?](#how-do-i-configure-my-project-to-use-typescript-eslint)
27+
- [Packages included in this project?](#packages-included-in-this-project)
2828
- [Package Versions](#package-versions)
2929
- [Supported TypeScript Version](#supported-typescript-version)
3030
- [Supported ESLint version](#supported-eslint-version)
@@ -34,11 +34,12 @@
3434

3535
## Getting Started
3636

37-
The following sections will give you an overview of what this project is, why it exists and how it works at a high level.
37+
**[You can find our Getting Started docs here](./docs/getting-started/README.md)**
38+
**[You can find our Linting FAQ / Troubleshooting docs here](./docs/getting-started/linting/FAQ.md)**
3839

39-
**It is very important that you are familiar with these concepts before reporting issues**, so please read them and let us know if you have any feedback.
40+
The documentation below will give you an overview of what this project is, why it exists and how it works at a high level.
4041

41-
If you are ready to get started you can jump to the package READMEs from here: [#how-do-i-configure-my-project-to-use-typescript-eslint](#how-do-i-configure-my-project-to-use-typescript-eslint)
42+
**It is very important that you are familiar with these concepts before reporting issues**, so it is a good idea to read them before raising issues.
4243

4344
<br>
4445

@@ -195,12 +196,10 @@ All positive contributions are welcome here!
195196

196197
<br>
197198

198-
## How do I configure my project to use `typescript-eslint`?
199+
## Packages included in this project
199200

200201
Please follow the links below for the packages you care about.
201202

202-
If you are interested in using TypeScript and ESLint together, you will want to check out [`@typescript-eslint/parser`](./packages/parser/) and [`@typescript-eslint/eslint-plugin`](./packages/eslint-plugin/) at the very least:
203-
204203
- [`@typescript-eslint/typescript-estree`](./packages/typescript-estree/) - An entirely generic TypeScript parser which takes TypeScript source code and produces an <a href="https://github.com/estree/estree">ESTree</a>-compatible AST</p>
205204

206205
- This package is also used to power the amazing opinionated code formatter [Prettier](https://prettier.io)'s own TypeScript use-case.
@@ -229,7 +228,7 @@ The latest version under the `canary` tag **(latest commit to master)** is:
229228

230229
<a href="https://www.npmjs.com/package/@typescript-eslint/parser"><img src="https://img.shields.io/npm/v/@typescript-eslint/parser/canary.svg?style=flat-square" alt="NPM Version" /></a>
231230

232-
(Note: The only exceptions to the automated publishes described above are when we are in the final phases of creating the next major version of the libraries - e.g. going from 1.x.x to 2.x.x. During these periods, we manually publish `canary` releases until we are happy with the release and promote it to `latest`.)
231+
(Note: The only exceptions to the automated publishes described above are when we are in the final phases of creating the next major version of the libraries - e.g. going from `1.x.x` to `2.x.x`. During these periods, we manually publish `canary` releases until we are happy with the release and promote it to `latest`.)
233232

234233
<br>
235234

azure-pipelines.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
yarn check:docs
3636
displayName: 'Validate documentation'
3737
38+
- script: |
39+
yarn check:spelling
40+
displayName: 'Validate documentation spelling'
41+
3842
- script: |
3943
yarn check:configs
4044
displayName: 'Validate plugin configs'
@@ -80,8 +84,8 @@ jobs:
8084
- job: publish_canary_version
8185
displayName: Publish the latest code as a canary version
8286
dependsOn:
83-
- primary_code_validation_and_tests
84-
- unit_tests_on_other_node_versions
87+
- primary_code_validation_and_tests
88+
- unit_tests_on_other_node_versions
8589
condition: and(succeeded(), eq(variables['Build.SourceBranchName'], 'master'), ne(variables['Build.Reason'], 'PullRequest'))
8690
pool:
8791
vmImage: 'Ubuntu-16.04'

docs/getting-started/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Getting Started
2+
3+
Approaching a monorepo project like this can be pretty daunting and hard to navigate for a new user.
4+
5+
The goal of these docs are to give you a quick overview of the project and all of its the pieces, as well as provide guides to help you get setup.
6+
7+
The docs are broken down into the following categories:
8+
9+
### [I want to lint my TypeScript codebase.](./linting/README.md)
10+
11+
### [(TODO) I want to write an ESLint plugin in TypeScript.](./plugin-development/README.md)

docs/getting-started/linting/FAQ.md

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# Troubleshooting / FAQ
2+
3+
## Table of Contents
4+
5+
- [My linting seems really slow](#my-linting-seems-really-slow)
6+
- [I get errors telling me "The file must be included in at least one of the projects provided"](#i-get-errors-telling-me-"the-file-must-be-included-in-at-least-one-of-the-projects-provided")
7+
- [I use a framework (like Vue) that requires custom file extensions, and I get errors like "You should add `parserOptions.extraFileExtensions` to your config"](<#i-use-a-framework-(like-vue)-that-requires-custom-file-extensions,-and-i-get-errors-like-"you-should-add-`parserOptions.extraFileExtensions`-to-your-config">)
8+
9+
---
10+
11+
## My linting feels really slow
12+
13+
As mentioned in the [type-aware linting doc](./TYPED_LINTING.md), if you're using type-aware linting, your lint times should be roughly the same as your build times.
14+
15+
If you're experiencing times much slower than that, then there are a few common culprits.
16+
17+
### Wide includes in your `tsconfig`
18+
19+
When using type-aware linting, you provide us with one or more tsconfigs. We then will pre-parse all files so that full and complete type information is available.
20+
21+
If you provide very wide globs in your `include` (like `**/*`), it can cause many more files than you expect to be included in this pre-parse. Additionally, if you provide no `include` in your tsconfig, then it is the same as providing the widest glob.
22+
23+
Wide globs can cause TypeScript to parse things like build artifacts, which can heavily impact performance. Always ensure you provide globs targeted at the folders you are specifically wanting to lint.
24+
25+
### `eslint-plugin-prettier`
26+
27+
This plugin surfaces prettier formatting problems at lint time, helping to ensure your code is always formatted. However this comes at a quite a large cost - in order to figure out if there is a difference, it has to do a prettier format on every file being linted. This means that each file will be parsed twice - once by ESLint, and once by Prettier. This can add up for large codebases.
28+
29+
Instead of using this plugin, we recommend using prettier's `--list-different` flag to detect if a file has not been correctly formatted. For example, our CI is setup to run the following command automatically, which blocks diffs that have not been formatted:
30+
31+
```bash
32+
$ yarn prettier --list-different \"./**/*.{ts,js,json,md}\"
33+
```
34+
35+
### `eslint-plugin-import`
36+
37+
This is another great plugin that we use ourselves in this project. However there are a few rules which can cause your lints to be really slow, because they cause the plugin to do its own parsing, and file tracking. This double parsing adds up for large codebases.
38+
39+
There are many rules that do single file static analysis, but we provide the following recommendations.
40+
41+
We recommend you do not use the following rules, as TypeScript provides the same checks as part of standard type checking:
42+
43+
- `import/named`
44+
- `import/namespace`
45+
- `import/default`
46+
- `import/no-named-as-default-member`
47+
48+
The following rules do not have equivalent checks in TypeScript, so we recommend that you only run them at CI/push time, to lessen the local performance burden.
49+
50+
- `import/no-named-as-default`
51+
- `import/no-cycle`
52+
- `import/no-unused-modules`
53+
- `import/no-deprecated`
54+
55+
### The `indent` / `@typescript-eslint/indent` rules
56+
57+
This rule helps ensure your codebase follows a consistent indentation pattern. However this involves a _lot_ of computations across every single token in a file. Across a large codebase, these can add up, and severely impact performance.
58+
59+
We recommend not using this rule, and instead using a tool like [`prettier`](https://www.npmjs.com/package/) to enforce a standardized formatting.
60+
61+
---
62+
63+
## I get errors telling me "The file must be included in at least one of the projects provided"
64+
65+
This error means that the file that's being linted is not included in any of the tsconfig files you provided us. A lot of the time this happens when users have test files or similar that are not included.
66+
67+
To fix this, simply make sure the `include` option in your tsconfig includes every single file you want to lint.
68+
69+
---
70+
71+
## I use a framework (like Vue) that requires custom file extensions, and I get errors like "You should add `parserOptions.extraFileExtensions` to your config"
72+
73+
You can use `parserOptions.extraFileExtensions` to specify an array of non-TypeScript extensions to allow, for example:
74+
75+
```diff
76+
parserOptions: {
77+
tsconfigRootDir: __dirname,
78+
project: ['./tsconfig.json'],
79+
+ extraFileExtensions: ['.vue'],
80+
},
81+
```
82+
83+
---

0 commit comments

Comments
 (0)