├── .gitignore ├── .travis.yml ├── Dockerfile ├── README.rst ├── codevalidator.py ├── config ├── coffeelint.json └── jshint.json ├── pgsqlparser └── PgSqlParser ├── pythontidy ├── PythonTidy.py └── __init__.py ├── requirements.txt ├── setup.py ├── test ├── config.json ├── test.java ├── test.js ├── test.php ├── test.properties ├── test.py ├── test.xml ├── test.yaml └── testbom.java ├── tests └── dummy_test.py ├── tools └── pre-commit-hook.sh └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/README.rst -------------------------------------------------------------------------------- /codevalidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/codevalidator.py -------------------------------------------------------------------------------- /config/coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/config/coffeelint.json -------------------------------------------------------------------------------- /config/jshint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/config/jshint.json -------------------------------------------------------------------------------- /pgsqlparser/PgSqlParser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/pgsqlparser/PgSqlParser -------------------------------------------------------------------------------- /pythontidy/PythonTidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/pythontidy/PythonTidy.py -------------------------------------------------------------------------------- /pythontidy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/setup.py -------------------------------------------------------------------------------- /test/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/test/config.json -------------------------------------------------------------------------------- /test/test.java: -------------------------------------------------------------------------------- 1 | bla 2 | This line contains tabs 3 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/test/test.php -------------------------------------------------------------------------------- /test/test.properties: -------------------------------------------------------------------------------- 1 | this file is not ASCII: äöü 2 | -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/test/test.xml -------------------------------------------------------------------------------- /test/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/test/test.yaml -------------------------------------------------------------------------------- /test/testbom.java: -------------------------------------------------------------------------------- 1 | test ä 2 | -------------------------------------------------------------------------------- /tests/dummy_test.py: -------------------------------------------------------------------------------- 1 | import codevalidator 2 | 3 | def test_dummy(): 4 | pass 5 | -------------------------------------------------------------------------------- /tools/pre-commit-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/codevalidator/HEAD/tools/pre-commit-hook.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=120 3 | --------------------------------------------------------------------------------