Adds coding magic comment checks to flake8
Project description
Adds coding magic comment checks (coding:) to flake8.
Install
Install with pip:
$ pip install flake8-coding
You can check that flake8 has picked it up by looking for flake8_coding in the output of --version:
$ flake8 --version
2.5.4 (pep8: 1.7.0, pyflakes: 1.0.0, flake8_coding: 1.1.1, mccabe: 0.4.0) CPython 2.7.11 on Darwin
Options
accept-encodings
A comma-separated list of acceptable source code encodings for the coding: magic comments in files. Default is latin-1, utf-8.
You can pass this as a command-line argument to flake8, e.g. --accept-encodings=utf-8,utf-16, or put it in your config file, e.g.:
[flake8]
accept-encodings = utf-8,utf-16
no-accept-encodings
If activated, this disallows all coding: magic comments, no matter their encoding. This might be useful for Python 3 projects where UTF-8 is the default and you don’t want other encodings used in your project.
You can pass this as a command-line argument to flake8, e.g. --no-accept-encodings, or put it in your config file, e.g.:
[flake8]
no-accept-encodings
Rules
C101 Coding magic comment not found
No magic encoding comment was found in the file. As per PEP-263, this must be in the first two lines of the file.
C102 Unknown encoding found in coding magic comment
The encoding found in the magic encoding comment did not match the accept-encodings option.
C103 Coding magic comment present
no-accept-encodings is set, and a magic encoding comment was found in the file.
Requirements
Python 2.6, 2.7, 3.3, 3.4
flake8
License
Apache License 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file flake8-coding-1.2.1.tar.gz
.
File metadata
- Download URL: flake8-coding-1.2.1.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fd77b593a235cf0f780e3db24db6640a73878aa7b9f537ea58b99fa8caa1c08 |
|
MD5 | bd6ea087fe8a032a48fb01793e8c632a |
|
BLAKE2b-256 | 33f86cf89c486cd254ae388b960da8f6a5ec349d397989114843c82bf45c2cfe |
File details
Details for the file flake8_coding-1.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: flake8_coding-1.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0453890d94539b350b30e707344f4ad8f875cfae35d82a0c8236fea19b70046 |
|
MD5 | 2e666c4724bed54b0961a68ad9cdf94b |
|
BLAKE2b-256 | c44cdd1fac2210a27c358d807ddf0b402e989694aa96ae414fc2f52e4bc87de6 |