Flake8 plugin warning for unsafe functions
Project description
Alfred the butler
=================
[![Build Status](https://travis-ci.org/datatheorem/flake8-alfred.svg?branch=master)](https://travis-ci.org/datatheorem/flake8-alfred)
Alfred is a flake8 plugin to warn on unsafe/obsolete symbols. You can use it as
a transition tools to eliminate functions, modules, variables you don't want in
existing project or you want to avoid in new ones.
Usage
-----
By default, this plugin does nothing, you have to configure your project to
enable it. Also no symbols are source of warnings by default.
Here's an example of configuration in your project's `setup.cfg` (also works
with `.flake8`):
```ini
[flake8]
enable-extensions = B1
warn-symbols =
obsolete_module = Warning! This module is obsolete!
module.obsolete_function = Warning! This function is obsolete!
module.submodule.constant = Warning! this variable will be removed!
```
Here enable-extensions tells flake8 to enable this plugin and warn-symbols is
the list of symbols we want to avoid in our project, with the associated
warning. By default, this plugin doesn't warn about any symbol.
If you just want to test/run once, you can also pass the configuration directly
to flake8:
```bash
$ flake8 --enable-extensions=B1 --warn-symbols=$'obsolte_module=Warning!\nmodule.obsolete_function=Warning!'
```
Cloning/Installation
--------------------
First, clone the repository:
```bash
git clone https://github.com/datatheorem/alfred-checker.git
```
Then, if you want to install the plugin on your user-specific directories, run
this command:
```bash
python3 setup.py install --user
```
If you want to install it on your system directories and make it available to
all the users, run this command:
```bash
python3 setup.py install
```
You can also use pipenv to setup a more reproductible environment, but the
setup.py install should be sufficient most of the time:
```bash
pipenv install
```
=================
[![Build Status](https://travis-ci.org/datatheorem/flake8-alfred.svg?branch=master)](https://travis-ci.org/datatheorem/flake8-alfred)
Alfred is a flake8 plugin to warn on unsafe/obsolete symbols. You can use it as
a transition tools to eliminate functions, modules, variables you don't want in
existing project or you want to avoid in new ones.
Usage
-----
By default, this plugin does nothing, you have to configure your project to
enable it. Also no symbols are source of warnings by default.
Here's an example of configuration in your project's `setup.cfg` (also works
with `.flake8`):
```ini
[flake8]
enable-extensions = B1
warn-symbols =
obsolete_module = Warning! This module is obsolete!
module.obsolete_function = Warning! This function is obsolete!
module.submodule.constant = Warning! this variable will be removed!
```
Here enable-extensions tells flake8 to enable this plugin and warn-symbols is
the list of symbols we want to avoid in our project, with the associated
warning. By default, this plugin doesn't warn about any symbol.
If you just want to test/run once, you can also pass the configuration directly
to flake8:
```bash
$ flake8 --enable-extensions=B1 --warn-symbols=$'obsolte_module=Warning!\nmodule.obsolete_function=Warning!'
```
Cloning/Installation
--------------------
First, clone the repository:
```bash
git clone https://github.com/datatheorem/alfred-checker.git
```
Then, if you want to install the plugin on your user-specific directories, run
this command:
```bash
python3 setup.py install --user
```
If you want to install it on your system directories and make it available to
all the users, run this command:
```bash
python3 setup.py install
```
You can also use pipenv to setup a more reproductible environment, but the
setup.py install should be sufficient most of the time:
```bash
pipenv install
```
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flake8-alfred-1.0.2.tar.gz
(6.2 kB
view hashes)
Built Distributions
flake8_alfred-1.0.2-py3.7.egg
(25.6 kB
view hashes)
Close
Hashes for flake8_alfred-1.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4bcad082ba6aec1c2664870b9182333e1365cbb5d60e9ca0f82d1d3ccb6bf1c8 |
|
MD5 | 1e5ba09414dd09dec8d2e130d113c604 |
|
BLAKE2b-256 | 2c8af51a8c26745c5b7406786a45c8ad8801c2eef412540d71c7c232856c5d39 |