Class: ThemeCheck::ValidJson

Inherits:
JsonCheck show all
Defined in:
lib/theme_check/checks/valid_json.rb

Constant Summary

Constants inherited from Check

Check::CATEGORIES, Check::SEVERITIES

Instance Attribute Summary

Attributes inherited from Check

#offenses, #options, #theme

Instance Method Summary collapse

Methods inherited from JsonCheck

#add_offense

Methods included from ChecksTracking

#inherited

Methods inherited from Check

all, can_disable, #can_disable?, categories, #categories, category, #code_name, #doc, doc, docs_url, #ignore!, #ignored?, #severity, severity, #to_s, #unignore!

Methods included from JsonHelpers

#format_json_parse_error

Instance Method Details

#on_file(file) ⇒ Object



8
9
10
11
12
13
# File 'lib/theme_check/checks/valid_json.rb', line 8

def on_file(file)
  if file.parse_error
    message = format_json_parse_error(file.parse_error)
    add_offense(message, template: file)
  end
end