-
Notifications
You must be signed in to change notification settings - Fork 8
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
chore(deps-dev): update ESLint pluggins, migrate lint rules #2625
Merged
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
b66d653
chore(deps): update eslint dependencies, set new config
NastaLeo bd6f96c
style(lint): set rules for eslint config
NastaLeo b77e366
chore(deps): install 'stylistic/eslint-plugin'
NastaLeo 8d9d35a
style(deps): precise eslint rules, move to '@stylistic/eslint-plugin'
NastaLeo 535481e
style(deps): fix max-len rule
NastaLeo 5fe3850
style(deps): add ignore caught errors rule
NastaLeo b0ab156
style(deps): migrate ban-types to new rules
NastaLeo 816b7ac
style(deps): get rid of TODO check
NastaLeo 24e640c
style(deps): update sonarjs
NastaLeo b7c6e29
style(deps): remove unused rule
NastaLeo fe80c5a
style(deps): update config
NastaLeo bdf3437
style(deps): turn off import.eslintrc.yml
NastaLeo 6932cb2
style(deps): add @ts-ignore to custom plugin tests
NastaLeo 9d0eb2d
Merge remote-tracking branch 'refs/remotes/origin/main' into tech/esl…
ala-n afa74f0
chore(deps): replace eslint-plugin-import by eslint-plugin-import-x
NastaLeo 468028b
Merge branch 'tech/esllint-rules' of https://github.com/exadel-inc/es…
NastaLeo c540298
style(deps): update deps
NastaLeo ab336e4
style(deps): move ignore and languageOptions config to separate files
NastaLeo 2be5b6f
style(deps): split import plugin config
NastaLeo 051d7cf
style(deps): refactor custom rules handling
NastaLeo 2434d44
style(deps): fix custom rules usages
NastaLeo f7b2b70
style(deps): remove unused dependency
NastaLeo 19bd447
style(deps): fix ignore files
NastaLeo c4cf30e
chore: refactor and rename rule config files
ala-n e73afaa
chore: update dependencies to use exactly 9th version of eslint
ala-n af766de
chore: remove related `.eslintignore`
ala-n 12c7f41
chore: temporary disable validation for subpackages
ala-n 37b74f6
chore(deps): small changes of rules files structure
NastaLeo b0de4c5
chore: fix ignore config
NastaLeo dd9227d
style(deps): fix import config
NastaLeo 1dee607
style(deps): return test script for e2e module
NastaLeo a8f19f7
Merge branch 'main-beta' of https://github.com/exadel-inc/esl into te…
NastaLeo 0052ee1
Merge remote tracking branch 'main-beta' into 'tech/eslint-rules'
NastaLeo e265b1b
Merge remote-tracking branch 'origin/main-beta' into tech/esllint-rules
ala-n 5e9cabb
chore(deps): remove unused directives
NastaLeo 84bb532
Merge branch 'tech/esllint-rules' of https://github.com/exadel-inc/es…
NastaLeo 649563f
chore: move yml files to js
NastaLeo c0905ca
style(deps): apply suggestions from code review
NastaLeo 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
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 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,17 @@ | ||
module.exports = [ | ||
{ | ||
files: ["**/*.ts", "**/*.tsx"], | ||
linterOptions: { | ||
reportUnusedDisableDirectives: "warn" | ||
} | ||
}, | ||
...require('./linting/eslint.config.ignore'), | ||
...require('./linting/eslint.config.language'), | ||
...require('./linting/eslint.config.codestyle'), | ||
...require('./linting/eslint.config.coderules'), | ||
...require('./linting/eslint.config.sonarjs'), | ||
...require('./linting/eslint.config.stylistic'), | ||
...require('./linting/eslint.config.editorconfig'), | ||
...require('./linting/eslint.config.import'), | ||
...require('./linting/eslint.config.tsdoc') | ||
]; |
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 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 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 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
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.
Temporary, until plugin update