-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch to flat config format #609
Merged
Merged
Changes from 33 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
5d73594
revert to config file using new flat config format
spaceninja d78c4d2
2.0.0-alpha.0
spaceninja 6b9ad00
fix package name
spaceninja cc971da
2.0.0-alpha.1
spaceninja c713ff3
update readme
spaceninja cdeaa87
add globals
spaceninja 8843460
add node plugin
spaceninja 1645f31
2.0.0-alpha.2
spaceninja a090c20
trying something
spaceninja 2b83141
2.0.0-alpha.3
spaceninja 53120db
add more plugins
spaceninja 2ad1513
2.0.0-alpha.4
spaceninja 4b72441
disable stylistic rules
spaceninja e614455
2.0.0-alpha.5
spaceninja fc93e72
add rules
spaceninja 91f3865
update globals
spaceninja 314c440
2.0.0-alpha.6
spaceninja 6c23c09
updated stylistic rules
spaceninja 8e773f9
2.0.0-alpha.7
spaceninja 2880934
add custom rule
spaceninja 1c016e4
2.0.0-alpha.8
spaceninja 3c9772d
better match existing config
spaceninja 766d0cc
2.0.0-alpha.9
spaceninja 002312b
add TS configs
spaceninja 8810dcd
2.0.0-alpha.10
spaceninja a98d1ea
simplify TS config
spaceninja 4bc9206
2.0.0-alpha.11
spaceninja 4d6c334
standardize import naming
spaceninja e85ae09
update docs
spaceninja 26d9fce
update ci name
spaceninja 044acf5
better comment
spaceninja ca13b87
reduce diff
spaceninja 71a7178
oops
spaceninja 53b12b5
move to right directory
spaceninja d073f2b
2.0.0-alpha.12
spaceninja ca58850
restore changelog, bump version
spaceninja 0b353c6
24.0.0-alpha.13
spaceninja File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_style = tab | ||
indent_size = 2 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
trim_trailing_whitespace = false | ||
|
||
# YAML files cannot have tabs | ||
# @see https://yaml.org/faq.html | ||
[*.yml] | ||
indent_style = space |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
node_modules | ||
/dist/*.js | ||
.vscode/ | ||
/fixtures/repos | ||
/tmp-eslint-config | ||
.vscode |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lts/* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"extends": ["config:base", ":automergeMinor"], | ||
"reviewers": ["team:dev"], | ||
"dependencyDashboard": true, | ||
"stabilityDays": 4, | ||
"packageRules": [ | ||
{ | ||
"matchDepTypes": ["dependencies"], | ||
"rangeStrategy": "bump" | ||
}, | ||
{ | ||
"matchPackagePatterns": ["eslint"], | ||
"automerge": false | ||
} | ||
] | ||
"extends": ["config:base", ":automergeMinor"], | ||
"reviewers": ["team:dev"], | ||
"dependencyDashboard": true, | ||
"stabilityDays": 4, | ||
"packageRules": [ | ||
{ | ||
"matchDepTypes": ["dependencies"], | ||
"rangeStrategy": "bump" | ||
}, | ||
{ | ||
"matchPackagePatterns": ["eslint"], | ||
"automerge": false | ||
} | ||
] | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the updates to the editorconfig. 👍🏽