Skip to content

Commit 090043c

Browse files
committed
stuff For pylint and travis
1 parent 41dedf9 commit 090043c

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.pylintrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[TYPECHECK]
2+
ignored-modules=sublime,sublime_plugin,package_control
3+
4+
[MASTER]
5+
# init-hook='import sys; sys.path.append("C:\\Users\\Admin\\AppData\\Roaming\\Sublime Text 3\\Packages")'
6+
init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(os.path.dirname(find_pylintrc())))"
7+
8+
[MESSAGES CONTROL]
9+
disable=all
10+
enable=E

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: python
2+
jobs:
3+
include:
4+
- name: "Windows Lint"
5+
os: windows
6+
language: sh
7+
python: "3.7"
8+
cache: pip
9+
before_install:
10+
- choco install python --version 3.7.3
11+
- export PATH="/c/Python37:/c/Python37/Scripts:$PATH"
12+
- pip install pylint
13+
script:
14+
- pylint library && pylint queries && pylint application && pylint interface

0 commit comments

Comments
 (0)