Skip to content

Commit

Permalink
Update config
Browse files Browse the repository at this point in the history
  • Loading branch information
aparajita committed Oct 5, 2014
1 parent 15744c0 commit 8132109
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
.DS_Store
3 changes: 3 additions & 0 deletions .sublimelinterrc
Expand Up @@ -4,6 +4,9 @@
"flake8": {
"max-line-length": 120
},
"pep257": {
"ignore": ["D202"]
},
"pep8": {
"max-line-length": 120
}
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -8,4 +8,4 @@ install:
# command to run tests
script:
- flake8 . --max-line-length=120
- pep257 .
- pep257 . --ignore=D202
3 changes: 3 additions & 0 deletions linter.py
Expand Up @@ -25,3 +25,6 @@ class Ruby(RubyLinter):
)
multiline = True
comment_re = r'\s*#'
version_args = '--version'
version_re = r'^ruby (?P<version>\d+\.\d+\.\d+)'
version_requirement = '>= 1.8'

0 comments on commit 8132109

Please sign in to comment.