1
0
Fork 0
mirror of https://github.com/Reuh/SublimeLinter-contrib-candran.git synced 2025-10-27 18:19:31 +00:00

Forgot some hidden files

This commit is contained in:
Étienne Fildadut 2019-08-11 16:38:38 +02:00
parent caa6840c59
commit 88bbba0ad5
2 changed files with 48 additions and 0 deletions

41
.gitignore vendored Executable file
View file

@ -0,0 +1,41 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# Logs and databases #
######################
*.log
*.sql
*.sqlite
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Node installed packages #
###########################
node_modules/*

7
.travis.yml Executable file
View file

@ -0,0 +1,7 @@
language: python
python:
- "3.6"
install:
- pip install flake8
script:
- flake8 . --max-line-length=120