Skip to content

Commit

Permalink
Merge branch 'master' into sort-interface-properties
Browse files Browse the repository at this point in the history
  • Loading branch information
bradzacher committed Mar 20, 2020
2 parents 816b367 + 3eb5d45 commit 73b2e86
Show file tree
Hide file tree
Showing 163 changed files with 11,452 additions and 2,162 deletions.
3 changes: 2 additions & 1 deletion .cspell.json
Expand Up @@ -10,7 +10,8 @@
"**/**/CONTRIBUTORS.md",
"**/**/ROADMAP.md",
"**/*.{json,snap}",
".cspell.json"
".cspell.json",
"yarn.lock"
],
"dictionaries": [
"typescript",
Expand Down
55 changes: 50 additions & 5 deletions .github/ISSUE_TEMPLATE/eslint-plugin-tslint.md
Expand Up @@ -6,15 +6,60 @@ labels: 'package: eslint-plugin-tslint, triage'
assignees: ''
---

**What code were you trying to parse?**
<!--
Please don't ignore this template.
```ts
// Please put code here
If you ignore it, we're just going to respond asking you to fill it out, which wastes everyone's time.
The more relevant information you can include, the faster we can find the issue and fix it without asking you for more info.
-->

<!--
Make sure you read through our FAQ before posting.
https://github.com/typescript-eslint/typescript-eslint/blob/issue-template-update/docs/getting-started/linting/FAQ.md
-->

**Repro**

<!--
Include a ***minimal*** reproduction case.
The more irrelevant code/config you give, the harder it is for us to investigate.
-->

```JSON
{
"rules": {
"@typescript-eslint/tslint/config": ["warn", {
"rules": {
"rule": "setting",
},
"rulesDirectory": [
"node_modules/foo"
]
}],
}
}
```

<!--
Also include your tslint config, if you're using a separate file.
-->

```TS
// your repro code case
```

**What did you expect to happen?**
**Expected Result**

**Actual Result**

**Additional Info**

<!--
Did eslint throw an exception?
**What actually happened?**
Please run your lint again with the --debug flag, and dump the output below.
i.e. eslint --ext ".ts,.js" src --debug
-->

**Versions**

Expand Down
7 changes: 6 additions & 1 deletion .github/ISSUE_TEMPLATE/eslint-plugin-typescript.md
@@ -1,7 +1,7 @@
---
name: '@typescript-eslint/eslint-plugin'
about: Report an issue with the '@typescript-eslint/eslint-plugin' package
title: '[rulename] <issue title>'
title: '[rulename] issue title'
labels: 'package: eslint-plugin, triage'
assignees: ''
---
Expand All @@ -26,6 +26,11 @@ Are you opening an issue because the rule you're trying to use is not found?
3) If ESLint still can't find the rule, then consider reporting an issue.
-->

<!--
Make sure you read through our FAQ before posting.
https://github.com/typescript-eslint/typescript-eslint/blob/issue-template-update/docs/getting-started/linting/FAQ.md
-->

**Repro**

<!--
Expand Down
47 changes: 42 additions & 5 deletions .github/ISSUE_TEMPLATE/typescript-eslint-parser.md
Expand Up @@ -6,15 +6,52 @@ labels: 'package: parser, triage'
assignees: ''
---

**What code were you trying to parse?**
<!--
Please don't ignore this template.
```ts
// Please put code here
If you ignore it, we're just going to respond asking you to fill it out, which wastes everyone's time.
The more relevant information you can include, the faster we can find the issue and fix it without asking you for more info.
-->

<!--
Make sure you read through our FAQ before posting.
https://github.com/typescript-eslint/typescript-eslint/blob/issue-template-update/docs/getting-started/linting/FAQ.md
-->

**Repro**

<!--
Include a ***minimal*** reproduction case.
The more irrelevant code/config you give, the harder it is for us to investigate.
-->

```JSON
{
"rules": {
"@typescript-eslint/<rule>": ["<setting>"]
},
"parserOptions": {
"...": "something"
}
}
```

**What did you expect to happen?**
```TS
// your repro code case
```

**Expected Result**

**Actual Result**

**Additional Info**

<!--
Did eslint throw an exception?
**What actually happened?**
Please run your lint again with the --debug flag, and dump the output below.
i.e. eslint --ext ".ts,.js" src --debug
-->

**Versions**

Expand Down
49 changes: 46 additions & 3 deletions .github/ISSUE_TEMPLATE/typescript-eslint-utils.md
@@ -1,14 +1,57 @@
---
name: '@typescript-eslint/experimental-utils'
about: Report an issue with the `@typescript-eslint/experimental-utils` package
about: Report an issue with the '@typescript-eslint/experimental-utils' package
title: ''
labels: 'package: utils, triage'
assignees: ''
---

**What did you expect to happen?**
<!--
Please don't ignore this template.
**What actually happened?**
If you ignore it, we're just going to respond asking you to fill it out, which wastes everyone's time.
The more relevant information you can include, the faster we can find the issue and fix it without asking you for more info.
-->

<!--
Make sure you read through our FAQ before posting.
https://github.com/typescript-eslint/typescript-eslint/blob/issue-template-update/docs/getting-started/linting/FAQ.md
-->

**Repro**

<!--
Include a ***minimal*** reproduction case.
The more irrelevant code/config you give, the harder it is for us to investigate.
-->

```JSON
{
"rules": {
"@typescript-eslint/<rule>": ["<setting>"]
},
"parserOptions": {
"...": "something"
}
}
```

```TS
// your repro code case
```

**Expected Result**

**Actual Result**

**Additional Info**

<!--
Did eslint throw an exception?
Please run your lint again with the --debug flag, and dump the output below.
i.e. eslint --ext ".ts,.js" src --debug
-->

**Versions**

Expand Down
51 changes: 45 additions & 6 deletions .github/ISSUE_TEMPLATE/typescript-estree.md
@@ -1,20 +1,59 @@
---
name: '@typescript-eslint/typescript-estree'
about: Report an issue with the `@typescript-eslint/typescript-estree` package
about: Report an issue with the '@typescript-eslint/typescript-estree' package
title: ''
labels: 'package: typescript-estree, triage'
assignees: ''
---

**What code were you trying to parse?**
<!--
Please don't ignore this template.
```ts
// Put your code here
If you ignore it, we're just going to respond asking you to fill it out, which wastes everyone's time.
The more relevant information you can include, the faster we can find the issue and fix it without asking you for more info.
-->

<!--
Make sure you read through our FAQ before posting.
https://github.com/typescript-eslint/typescript-eslint/blob/issue-template-update/docs/getting-started/linting/FAQ.md
-->

**Repro**

<!--
Include a ***minimal*** reproduction case.
The more irrelevant code/config you give, the harder it is for us to investigate.
Feel free to omit the eslint config if you are not using this module via ESLint.
-->

```JSON
{
"rules": {
"@typescript-eslint/<rule>": ["<setting>"]
},
"parserOptions": {
"...": "something"
}
}
```

**What did you expect to happen?**
```TS
// your repro code case
```

**Expected Result**

**Actual Result**

**Additional Info**

<!--
Did eslint throw an exception?
**What actually happened?**
Please run your lint again with the --debug flag, and dump the output below.
i.e. eslint --ext ".ts,.js" src --debug
-->

**Versions**

Expand Down

0 comments on commit 73b2e86

Please sign in to comment.