Class: LintTrap::Linter::PyLint
- Inherits:
-
Base
- Object
- Base
- LintTrap::Linter::PyLint
show all
- Defined in:
- lib/lint_trap/linter/pylint.rb
Overview
Encapsulates logic specific to pylint command line tool.
Constant Summary
Constants inherited
from Base
Base::CONFIG_PATH
Instance Method Summary
collapse
Methods inherited from Base
#==, #image, #image_version, #inspect, #known?, #lint, #name
Instance Method Details
#languages ⇒ Object
7
8
9
|
# File 'lib/lint_trap/linter/pylint.rb', line 7
def languages
super(Language::Python)
end
|
#version ⇒ Object
11
12
13
|
# File 'lib/lint_trap/linter/pylint.rb', line 11
def version
'1.3.1-3'
end
|