├── .github └── workflows │ └── flake.yml ├── .gitignore ├── LICENSE ├── README.md ├── disable_for_syntax_checks.py ├── linter.py ├── messages.json └── messages └── install.txt /.github/workflows/flake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epergo/SublimeLinter-contrib-ameba/HEAD/.github/workflows/flake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epergo/SublimeLinter-contrib-ameba/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epergo/SublimeLinter-contrib-ameba/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epergo/SublimeLinter-contrib-ameba/HEAD/README.md -------------------------------------------------------------------------------- /disable_for_syntax_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epergo/SublimeLinter-contrib-ameba/HEAD/disable_for_syntax_checks.py -------------------------------------------------------------------------------- /linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epergo/SublimeLinter-contrib-ameba/HEAD/linter.py -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epergo/SublimeLinter-contrib-ameba/HEAD/messages.json -------------------------------------------------------------------------------- /messages/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epergo/SublimeLinter-contrib-ameba/HEAD/messages/install.txt --------------------------------------------------------------------------------