https://github.com/trungnt13/vscode-autoflake
Vscode extension for autoflake remove unused imports
https://github.com/trungnt13/vscode-autoflake
Last synced: 6 months ago
JSON representation
Vscode extension for autoflake remove unused imports
- Host: GitHub
- URL: https://github.com/trungnt13/vscode-autoflake
- Owner: trungnt13
- License: mit
- Created: 2021-01-25T15:40:53.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-27T23:26:08.000Z (over 4 years ago)
- Last Synced: 2025-04-14T22:14:47.481Z (6 months ago)
- Language: TypeScript
- Size: 15.2 MB
- Stars: 3
- Watchers: 2
- Forks: 4
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Autoflake README
[Project link](https://github.com/myint/autoflake)
## Introduction
_autoflake_ removes unused imports and unused variables from Python code. It makes use of `pyflakes` to do this.
By default, _autoflake_ only removes unused imports for modules that are part of the standard library. (Other modules may have side effects that make them unsafe to remove automatically.) Removal of unused variables is also disabled by default.
autoflake also removes useless `pass` statements.
## Usage

## License
[MIT License](https://github.com/myint/autoflake/blob/master/README.rst)