lib/scss_lint/engine.rb in scss_lint-0.43.2 vs lib/scss_lint/engine.rb in scss_lint-0.44.0
- old
+ new
@@ -4,10 +4,10 @@
class FileEncodingError < StandardError; end
# Contains all information for a parsed SCSS file, including its name,
# contents, and parse tree.
class Engine
- ENGINE_OPTIONS = { cache: false, syntax: :scss }
+ ENGINE_OPTIONS = { cache: false, syntax: :scss }.freeze
attr_reader :contents, :filename, :lines, :tree, :any_control_commands
# Creates a parsed representation of an SCSS document from the given string
# or file.