Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Rubocop extension for enforcing graphql-ruby best practices.
Install the gem:
gem install rubocop-graphql
If you use bundler put this in your Gemfile:
gem 'rubocop-graphql', require: false
You need to tell RuboCop to load the GraphQL extension. There are three ways to do this:
Put this into your .rubocop.yml
.
require: rubocop-graphql
Alternatively, use the following array notation when specifying multiple extensions.
require:
- rubocop-other-extension
- rubocop-graphql
Now you can run rubocop
and it will automatically load the RuboCop GraphQL cops together with the standard cops.
rubocop --require rubocop-graphql
RuboCop::RakeTask.new do |task|
task.requires << 'rubocop-graphql'
end
All cops are located under lib/rubocop/cop/graphql
, and contain examples and documentation.
In your .rubocop.yml
, you may treat the GraphQL cops just like any other cop. For example:
GraphQL/ResolverMethodLength:
Max: 3
Initially sponsored by Evil Martians.
Bug reports and pull requests are welcome on GitHub at https://github.com/DmitryTsepelev/rubocop-graphql.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that rubocop-graphql demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.