lib/bako/dsl/context.rb

Summary

Maintainability
A
0 mins
Test Coverage

Add an empty line after magic comments.
Open

#
Severity: Minor
Found in lib/bako/dsl/context.rb by rubocop

Checks for a newline after the final magic comment.

Example:

# good
# frozen_string_literal: true

# Some documentation for Person
class Person
  # Some code
end

# bad
# frozen_string_literal: true
# Some documentation for Person
class Person
  # Some code
end

The use of eval is a serious security risk.
Open

      eval(dsl)
Severity: Minor
Found in lib/bako/dsl/context.rb by rubocop

This cop checks for the use of Kernel#eval and Binding#eval.

Example:

# bad

eval(something)
binding.eval(something)

There are no issues that match your filters.

Category
Status