Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactoring to use Syntax Tree #18

Merged
merged 6 commits into from
Oct 19, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
SatoshiMatsuzaki authored and SatoshiMatsuzaki committed Oct 19, 2019
commit 6d35989d45dc9ed06f1ca9c4af03f00a2237d41f
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.6.6
FROM python:3.7.4

ENV LC_ALL C.UTF-8
ENV LANG C.UTF-8
Expand Down
2 changes: 1 addition & 1 deletion LICENCE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 Satoshi Matsuzaki
Copyright (c) 2019 Satoshi Matsuzaki

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
13 changes: 4 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
Click==7.0
configparser==3.7
configparser>=4.0
# requirements for test
pytest==3.6.3
pytest-cov==2.6.0
codecov==2.0.15
flake8==3.5.0
mock==2.0.0
Pympler==0.6
memory-profiler==0.55.0
psutil==5.5.1
pytest>=5.2.0
pytest-cov>=2.8.0
flake8>=3.7.8
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _requirements():
name='src',
version=version,
license="MIT",
author='shigeru',
author='shigeru0215',
author_email='[email protected]',
url='https://github.com/shigeru0215/sqlint',
description='Simple Sql Linter',
Expand Down
5 changes: 0 additions & 5 deletions src/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
from .checker.old import check

__version__ = '0.1.2'

__all__ = [
'check'
]

'''
def parse(stmt):
Expand Down
216 changes: 131 additions & 85 deletions src/checker/base.py

Large diffs are not rendered by default.

Loading