Open collimarco opened 3 years ago
def method content = File.read 'Dockerfile' parser = DockerfileParser.new parser.instance_eval(content) end
content = and parser = are red in the first two lines, while the same variables are white when used in the last line. That is inconsistent.
content =
parser =
Expected: a variable name must keep the same color inside a method.
content =
andparser =
are red in the first two lines, while the same variables are white when used in the last line. That is inconsistent.Expected: a variable name must keep the same color inside a method.