Add missing linter! #1

Closed
kleph wants to merge 1 commit from test_lint into master
3 changed files with 16 additions and 0 deletions
Showing only changes of commit 2ca74cff35 - Show all commits

9
.drone.yml Normal file
View file

@ -0,0 +1,9 @@
---
kind: pipeline
name: lint
steps:
- name: python lint
image: cytopia/pylint
commands:
- find . -type f -name "*.py" | xargs pylint

6
.pylintrc Normal file
View file

@ -0,0 +1,6 @@
[MESSAGES CONTROL]
# C0111: Missing docstring
# C0103: snake_case names (and one letter index vars)
# R0801: Similar lines in N files
disable=R0801,C0111,C0103

1
README.md Normal file
View file

@ -0,0 +1 @@
[![Build Status](https://drone.kleph.eu/api/badges/kleph/advent_of_code/status.svg)](https://drone.kleph.eu/kleph/advent_of_code)