-
-
Notifications
You must be signed in to change notification settings - Fork 509
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
fix(linter): no-global-assign
look into globals
config
#8963
fix(linter): no-global-assign
look into globals
config
#8963
Conversation
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
CodSpeed Performance ReportMerging #8963 will not alter performanceComparing Summary
|
ae663d2
to
7b10cad
Compare
no-global-assign
look for globals
entry toono-global-assign
look into globals
config
a33460a
to
7b10cad
Compare
Merge activity
|
7b10cad
to
5d5278d
Compare
`no-global-assign` should report when `readonly` global variables are written. Also the rule did only look into `env` and not into `global` too. Created a new `ctx` pub function. Will maybe refactor other places. I think they have some problems too :)
5d5278d
to
03de103
Compare
There was no failing test for it. I added one after the merge-label |
`no-global-assign` should report when `readonly` global variables are written. Also the rule did only look into `env` and not into `global` too. Created a new `ctx` pub function. Will maybe refactor other places. I think they have some problems too :)
03de103
to
b191390
Compare
`no-global-assign` should report when `readonly` global variables are written. Also the rule did only look into `env` and not into `global` too. Created a new `ctx` pub function. Will maybe refactor other places. I think they have some problems too :)
no-global-assign
should report whenreadonly
global variables are written.Also the rule did only look into
env
and not intoglobal
too.Created a new
ctx
pub function. Will maybe refactor other places. I think they have some problems too :)