Skip to content

Commit 01b51c6

Browse files
committed
clean up
1 parent 477f6f2 commit 01b51c6

File tree

4 files changed

+3
-19
lines changed

4 files changed

+3
-19
lines changed

.no-sublime-package

Whitespace-only changes.

.sublimelinterrc

Lines changed: 0 additions & 10 deletions
This file was deleted.

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
language: python
22
python:
3-
- "3.3"
4-
# command to install dependencies
3+
- "3.6"
4+
55
install:
66
- pip install flake8
7-
- pip install pydocstyle
8-
# command to run tests
7+
98
script:
109
- flake8 . --max-line-length=120
11-
- pydocstyle . --add-ignore=D202

linter.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,10 @@
88
# License: MIT
99
#
1010

11-
"""This module exports the Phpcs plugin class."""
12-
1311
from SublimeLinter.lint import Linter
1412

1513

1614
class Phpcs(Linter):
17-
"""Provides an interface to phpcs."""
18-
1915
syntax = ('php', 'html', 'html 5')
2016
cmd = ('phpcs', '--report=checkstyle', '${args}', '-')
2117
regex = (

0 commit comments

Comments
 (0)