Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit129882d

Browse files
chore: formatted files with Prettier via trunk fmt (#19355)
* chore: remove formatting-related lint rules internally* chore: formatted files with Prettier via trunk fmt* rm .prettierrc.json* chore: correct comment directives and formatting* Apply introduced fmt changes post-merge* Also disable MD010 and MD030 in preparation for 19355* Also disable MD013 in preparation for 19355* Updated tools/update-rule-type-headers.js to print tabs* Fix introduced issues from the main merge* Manually format conf/*.json* Switch conf/*.json files back to two spaces, per prettier config* chore: empty commit to hopefully unblock GitHub
1 parent1738dbc commit129882d

File tree

1,060 files changed

+428679
-398766
lines changed

Some content is hidden

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

1,060 files changed

+428679
-398766
lines changed

‎.codeclimate.yml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
languages:
2-
JavaScript:true
2+
JavaScript:true
33

44
exclude_paths:
5-
-tests/**
5+
-tests/**
66

77
engines:
8-
eslint:
9-
enabled:true
8+
eslint:
9+
enabled:true

‎.github/ISSUE_TEMPLATE/bug-report.yml‎

Lines changed: 90 additions & 90 deletions
Original file line numberDiff line numberDiff line change
@@ -2,96 +2,96 @@ name: "\U0001F41E Report a problem"
22
description:"Report an issue with ESLint or rules bundled with ESLint"
33
title:"Bug: (fill in)"
44
labels:
5-
-bug
6-
-"repro:needed"
5+
-bug
6+
-"repro:needed"
77
body:
8-
-type:markdown
9-
attributes:
10-
value:By opening an issue, you agree to abide by the [OpenJS Foundation Code of Conduct](https://eslint.org/conduct).
11-
-type:textarea
12-
id:environment
13-
attributes:
14-
label:Environment
15-
description:|
16-
Please tell us about how you're running ESLint (Run `npx eslint --env-info`.)
17-
value:|
18-
Node version:
19-
npm version:
20-
Local ESLint version:
21-
Global ESLint version:
22-
Operating System:
23-
validations:
24-
required:true
25-
-type:dropdown
26-
id:parser
27-
attributes:
28-
label:What parser are you using?
29-
description:|
30-
Please keep in mind that some problems are parser-specific.
31-
options:
32-
-"Default (Espree)"
33-
-"@typescript-eslint/parser"
34-
-"@babel/eslint-parser"
35-
-"vue-eslint-parser"
36-
-"@angular-eslint/template-parser"
37-
-Other
38-
validations:
39-
required:true
40-
-type:textarea
41-
id:description
42-
attributes:
43-
label:What did you do?
44-
description:|
45-
Please include a *minimal* reproduction case. If possible, include a link to a reproduction of the problem in the [ESLint demo](https://eslint.org/demo). Otherwise, include source code, configuration file(s), and any other information about how you're using ESLint. You can use Markdown in this field.
46-
value:|
47-
<details>
48-
<summary>Configuration</summary>
8+
-type:markdown
9+
attributes:
10+
value:By opening an issue, you agree to abide by the [OpenJS Foundation Code of Conduct](https://eslint.org/conduct).
11+
-type:textarea
12+
id:environment
13+
attributes:
14+
label:Environment
15+
description:|
16+
Please tell us about how you're running ESLint (Run `npx eslint --env-info`.)
17+
value:|
18+
Node version:
19+
npm version:
20+
Local ESLint version:
21+
Global ESLint version:
22+
Operating System:
23+
validations:
24+
required:true
25+
-type:dropdown
26+
id:parser
27+
attributes:
28+
label:What parser are you using?
29+
description:|
30+
Please keep in mind that some problems are parser-specific.
31+
options:
32+
-"Default (Espree)"
33+
-"@typescript-eslint/parser"
34+
-"@babel/eslint-parser"
35+
-"vue-eslint-parser"
36+
-"@angular-eslint/template-parser"
37+
-Other
38+
validations:
39+
required:true
40+
-type:textarea
41+
id:description
42+
attributes:
43+
label:What did you do?
44+
description:|
45+
Please include a *minimal* reproduction case. If possible, include a link to a reproduction of the problem in the [ESLint demo](https://eslint.org/demo). Otherwise, include source code, configuration file(s), and any other information about how you're using ESLint. You can use Markdown in this field.
46+
value:|
47+
<details>
48+
<summary>Configuration</summary>
4949
50-
```js
51-
<!-- Paste your configuration here -->
52-
```
53-
</details>
50+
```js
51+
<!-- Paste your configuration here -->
52+
```
53+
</details>
5454
55-
```js
56-
<!-- Paste your code here -->
57-
```
58-
validations:
59-
required:true
60-
-type:textarea
61-
id:expectation
62-
attributes:
63-
label:What did you expect to happen?
64-
description:|
65-
You can use Markdown in this field.
66-
validations:
67-
required:true
68-
-type:textarea
69-
id:lint-output
70-
attributes:
71-
label:What actually happened?
72-
description:|
73-
Please copy-paste the actual ESLint output. You can use Markdown in this field.
74-
validations:
75-
required:true
76-
-type:input
77-
id:repro-url
78-
attributes:
79-
label:Link to Minimal Reproducible Example
80-
description:'Link to a [playground](https://eslint.org/play), [StackBlitz](https://stackblitz.com), or GitHub repo with a minimal reproduction of the problem. **A minimal reproduction is required** so that others can help debug your issue. If a report is vague (e.g. just a generic error message) and has no reproduction, it may be auto-closed.'
81-
placeholder:'https://stackblitz.com/abcd1234'
82-
validations:
83-
required:true
84-
-type:checkboxes
85-
attributes:
86-
label:Participation
87-
options:
88-
-label:I am willing to submit a pull request for this issue.
89-
required:false
90-
-type:markdown
91-
attributes:
92-
value:Please **do not** open a pull request until this issue has been accepted by the team.
93-
-type:textarea
94-
id:comments
95-
attributes:
96-
label:Additional comments
97-
description:Is there anything else that's important for the team to know?
55+
```js
56+
<!-- Paste your code here -->
57+
```
58+
validations:
59+
required:true
60+
-type:textarea
61+
id:expectation
62+
attributes:
63+
label:What did you expect to happen?
64+
description:|
65+
You can use Markdown in this field.
66+
validations:
67+
required:true
68+
-type:textarea
69+
id:lint-output
70+
attributes:
71+
label:What actually happened?
72+
description:|
73+
Please copy-paste the actual ESLint output. You can use Markdown in this field.
74+
validations:
75+
required:true
76+
-type:input
77+
id:repro-url
78+
attributes:
79+
label:Link to Minimal Reproducible Example
80+
description:"Link to a [playground](https://eslint.org/play), [StackBlitz](https://stackblitz.com), or GitHub repo with a minimal reproduction of the problem. **A minimal reproduction is required** so that others can help debug your issue. If a report is vague (e.g. just a generic error message) and has no reproduction, it may be auto-closed."
81+
placeholder:"https://stackblitz.com/abcd1234"
82+
validations:
83+
required:true
84+
-type:checkboxes
85+
attributes:
86+
label:Participation
87+
options:
88+
-label:I am willing to submit a pull request for this issue.
89+
required:false
90+
-type:markdown
91+
attributes:
92+
value:Please **do not** open a pull request until this issue has been accepted by the team.
93+
-type:textarea
94+
id:comments
95+
attributes:
96+
label:Additional comments
97+
description:Is there anything else that's important for the team to know?

‎.github/ISSUE_TEMPLATE/change.yml‎

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -2,49 +2,49 @@ name: "\U0001F680 Request a change (not rule-related)"
22
description:"Request a change that is not a bug fix, rule change, or new rule"
33
title:"Change Request: (fill in)"
44
labels:
5-
-enhancement
6-
-core
5+
-enhancement
6+
-core
77
body:
8-
-type:markdown
9-
attributes:
10-
value:By opening an issue, you agree to abide by the [OpenJS Foundation Code of Conduct](https://eslint.org/conduct).
11-
-type:input
12-
attributes:
13-
label:ESLint version
14-
description:|
15-
What version of ESLint are you currently using? (Run `npx eslint --version`.)
16-
placeholder:|
17-
e.g. v8.0.0
18-
validations:
19-
required:true
20-
-type:textarea
21-
attributes:
22-
label:What problem do you want to solve?
23-
description:|
24-
Please explain your use case in as much detail as possible.
25-
placeholder:|
26-
ESLint currently...
27-
validations:
28-
required:true
29-
-type:textarea
30-
attributes:
31-
label:What do you think is the correct solution?
32-
description:|
33-
Please explain how you'd like to change ESLint to address the problem.
34-
placeholder:|
35-
I'd like ESLint to...
36-
validations:
37-
required:true
38-
-type:checkboxes
39-
attributes:
40-
label:Participation
41-
options:
42-
-label:I am willing to submit a pull request for this change.
43-
required:false
44-
-type:markdown
45-
attributes:
46-
value:Please **do not** open a pull request until this issue has been accepted by the team.
47-
-type:textarea
48-
attributes:
49-
label:Additional comments
50-
description:Is there anything else that's important for the team to know?
8+
-type:markdown
9+
attributes:
10+
value:By opening an issue, you agree to abide by the [OpenJS Foundation Code of Conduct](https://eslint.org/conduct).
11+
-type:input
12+
attributes:
13+
label:ESLint version
14+
description:|
15+
What version of ESLint are you currently using? (Run `npx eslint --version`.)
16+
placeholder:|
17+
e.g. v8.0.0
18+
validations:
19+
required:true
20+
-type:textarea
21+
attributes:
22+
label:What problem do you want to solve?
23+
description:|
24+
Please explain your use case in as much detail as possible.
25+
placeholder:|
26+
ESLint currently...
27+
validations:
28+
required:true
29+
-type:textarea
30+
attributes:
31+
label:What do you think is the correct solution?
32+
description:|
33+
Please explain how you'd like to change ESLint to address the problem.
34+
placeholder:|
35+
I'd like ESLint to...
36+
validations:
37+
required:true
38+
-type:checkboxes
39+
attributes:
40+
label:Participation
41+
options:
42+
-label:I am willing to submit a pull request for this change.
43+
required:false
44+
-type:markdown
45+
attributes:
46+
value:Please **do not** open a pull request until this issue has been accepted by the team.
47+
-type:textarea
48+
attributes:
49+
label:Additional comments
50+
description:Is there anything else that's important for the team to know?

‎.github/ISSUE_TEMPLATE/config.yml‎

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled:false
22
contact_links:
3-
-name:🗣 Ask a Question, Discuss
4-
url:https://github.com/eslint/eslint/discussions
5-
about:Get help using ESLint
6-
-name:📝 Help with VS Code ESLint
7-
url:https://github.com/microsoft/vscode-eslint/issues/
8-
about:Bugs and feature requests for the VS Code ESLint plugin
9-
-name:Discord Server
10-
url:https://eslint.org/chat
11-
about:Talk with the team
3+
-name:🗣 Ask a Question, Discuss
4+
url:https://github.com/eslint/eslint/discussions
5+
about:Get help using ESLint
6+
-name:📝 Help with VS Code ESLint
7+
url:https://github.com/microsoft/vscode-eslint/issues/
8+
about:Bugs and feature requests for the VS Code ESLint plugin
9+
-name:Discord Server
10+
url:https://eslint.org/chat
11+
about:Talk with the team

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp