We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15744c0 commit 8132109Copy full SHA for 8132109
.gitignore
@@ -0,0 +1 @@
1
+.DS_Store
.sublimelinterrc
@@ -4,6 +4,9 @@
4
"flake8": {
5
"max-line-length": 120
6
},
7
+ "pep257": {
8
+ "ignore": ["D202"]
9
+ },
10
"pep8": {
11
12
}
.travis.yml
@@ -8,4 +8,4 @@ install:
# command to run tests
script:
- flake8 . --max-line-length=120
- - pep257 .
+ - pep257 . --ignore=D202
linter.py
@@ -25,3 +25,6 @@ class Ruby(RubyLinter):
25
)
26
multiline = True
27
comment_re = r'\s*#'
28
+ version_args = '--version'
29
+ version_re = r'^ruby (?P<version>\d+\.\d+\.\d+)'
30
+ version_requirement = '>= 1.8'
0 commit comments