├── .editorconfig ├── .gitattributes ├── .github_changelog_generator ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib └── main.js ├── package.json └── spec ├── .eslintrc.js ├── fixtures ├── bad.py ├── builtins.py ├── errwarn.py ├── flake8 ├── flake8_backup ├── good.py └── with-config-file │ ├── bad-ignored.py │ ├── subdir │ └── bad-ignored.py │ └── tox.ini └── linter-flake8-spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github_changelog_generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/.github_changelog_generator -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | node_modules 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/README.md -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/package.json -------------------------------------------------------------------------------- /spec/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/spec/.eslintrc.js -------------------------------------------------------------------------------- /spec/fixtures/bad.py: -------------------------------------------------------------------------------- 1 | asfd 2 | -------------------------------------------------------------------------------- /spec/fixtures/builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/spec/fixtures/builtins.py -------------------------------------------------------------------------------- /spec/fixtures/errwarn.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | a = 12345 5 | -------------------------------------------------------------------------------- /spec/fixtures/flake8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/flake8_backup: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/good.py: -------------------------------------------------------------------------------- 1 | """Simple test file.""" 2 | -------------------------------------------------------------------------------- /spec/fixtures/with-config-file/bad-ignored.py: -------------------------------------------------------------------------------- 1 | asfd 2 | -------------------------------------------------------------------------------- /spec/fixtures/with-config-file/subdir/bad-ignored.py: -------------------------------------------------------------------------------- 1 | asfd 2 | -------------------------------------------------------------------------------- /spec/fixtures/with-config-file/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/spec/fixtures/with-config-file/tox.ini -------------------------------------------------------------------------------- /spec/linter-flake8-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-flake8/HEAD/spec/linter-flake8-spec.js --------------------------------------------------------------------------------