andreoliwa / nitpick

Enforce the same settings on multiple projects

Home Page:https://nitpick.readthedocs.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Check .gitignore and .dockerignore

andreoliwa opened this issue · comments

Expected Behavior

Check ignore files like .gitignore and .dockerignore.

Current Behavior

They are not being checked.

Possible Solution

Use #165 to represent these ignore files, but #183 should be done first though.

This solution below is not valid anymore:

class IgnoreFile(BaseFile):
    pass
class GitIgnore(IgnoreFile):
    pass
class DockerIgnore(IgnoreFile):
    pass