All Projects → mlshapiro → jupyterlab-flake8

mlshapiro / jupyterlab-flake8

Licence: BSD-3-Clause license
Jupyterlab python linter for notebooks and text files using flake8

Programming Languages

typescript
32286 projects
python
139335 projects - #7 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to jupyterlab-flake8

jupyterlab-custom-css
Add custom CSS rules for JupyterLab
Stars: ✭ 32 (-69.52%)
Mutual labels:  jupyterlab, jupyterlab-extension
ipyp5
p5.js Jupyter Widget
Stars: ✭ 33 (-68.57%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyter-offlinenotebook
Save and load notebooks to local-storage
Stars: ✭ 39 (-62.86%)
Mutual labels:  jupyterlab, jupyterlab-extension
knowledgelab
KnowledgeRepo + JupyterLab
Stars: ✭ 46 (-56.19%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyter-archive
A Jupyter/Jupyterlab extension to make, download and extract archive files.
Stars: ✭ 57 (-45.71%)
Mutual labels:  jupyterlab, jupyterlab-extension
perspective-python
Python APIs for perspective front end
Stars: ✭ 14 (-86.67%)
Mutual labels:  jupyterlab, jupyterlab-extension
spellchecker
Spellchecker for JupyterLab notebook markdown cells and file editor.
Stars: ✭ 162 (+54.29%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-kubeflow-kale
JupyterLab extension to provide a Kubeflow specific left area for Notebooks deployment
Stars: ✭ 17 (-83.81%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-h5web
A JupyterLab extension to explore and visualize HDF5 file contents. Based on https://github.com/silx-kit/h5web.
Stars: ✭ 41 (-60.95%)
Mutual labels:  jupyterlab, jupyterlab-extension
nbcelltests
Cell-by-cell testing for production Jupyter notebooks in JupyterLab
Stars: ✭ 66 (-37.14%)
Mutual labels:  jupyterlab, jupyterlab-extension
theme-cookiecutter
A cookiecutter template to help you make new JupyterLab theme extensions
Stars: ✭ 47 (-55.24%)
Mutual labels:  jupyterlab, jupyterlab-extension
ipydagred3
ipywidgets library for drawing directed acyclic graphs in jupyterlab using dagre-d3
Stars: ✭ 38 (-63.81%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab iframe
View html as an embedded iframe in JupyterLab
Stars: ✭ 91 (-13.33%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-vimrc
add a basic vimrc to jupyterlab vim
Stars: ✭ 59 (-43.81%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-link-share
JupyterLab Extension to easily share a link to a running server on Binder
Stars: ✭ 40 (-61.9%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab discovery
A JupyterLab extension to facilitate the discovery and installation of other extensions
Stars: ✭ 47 (-55.24%)
Mutual labels:  jupyterlab, jupyterlab-extension
Jupyterlab voyager
JupyterLab extension visualize data with Voyager
Stars: ✭ 244 (+132.38%)
Mutual labels:  jupyterlab, jupyterlab-extension
Jupyterlab tensorboard
Tensorboard extension for jupyterlab.
Stars: ✭ 245 (+133.33%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlite
Wasm powered Jupyter running in the browser 💡
Stars: ✭ 3,039 (+2794.29%)
Mutual labels:  jupyterlab, jupyterlab-extension
jlab-enhanced-cell-toolbar
A cell toolbar for JupyterLab.
Stars: ✭ 28 (-73.33%)
Mutual labels:  jupyterlab, jupyterlab-extension

Jupyterlab-flake8

Github Actions Status

Jupyterlab extension to lint python notebooks and python files in the text editor. Uses flake8 python library for linting.

Note: This extension will only work if you can load the terminal in jupyterlab

Prerequisites

  • JupyterLab >= 3.x
$ conda install jupyterlab  # if using conda
$ pip install jupyterlab    # if using pip
$ conda install flake8   # if using conda
$ pip install flake8     # if using pip

Installation

For JupyterLab 3.x:

pip install jupyterlab_flake8

For JupyterLab 2.x:

jupyter labextension install [email protected]

Uninstall

To remove the extension, execute:

pip uninstall jupyterlab_flake8

Usage

When the extension is installed, the linter will automatically be toggled on and configured to show error messages. The linter will run when you change cells.

The linter will run on state change of the notebook or the text editor. State changes occur when the document is saved, the cell is changed, or on some carriage returns.

Settings

Plugin is configured in the Jupyter Lab Advanced Settings. If you are using a specific conda environment, you must explicitly set this environment in the conda_env variable of the plugin settings.

Toggle shortcuts are also available in the view menu:

  • Enable Flake8
    • Turns on or off linting in the notebook
  • Output Flake8 Browser Console Logs
    • Turn on browser console logs for debugging the extension

Configure Flake8

The notebook linter is configured the same way as the flake8 command line tool. See the flake8 project configuration documentation for all options.

As an example, if you want to ignore certain warnings:

  • Create .flake8 file in the same directory as the notebook
  • Specify a [flake8] block in a valid INI format
[flake8]
ignore =
    F812,   # list comprehension redefines
    H101    # Use TODO(NAME)
exclude =
    .git,
    __pycache__,
    docs/source/conf.py,
    dist
max-complexity = 10

The flake8 linter will then use this configuration in the notebook.

Contributing

Development install

Note: You will need NodeJS to build the extension package.

The jlpm command is JupyterLab's pinned version of yarn that is installed with JupyterLab. You may use yarn or npm in lieu of jlpm below.

# Clone the repo to your local environment
# Change directory to the jupyterlab_flake8 directory
# Install package in development mode
pip install -e .

# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite

# Rebuild extension Typescript source after making changes
jlpm run build

You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.

# Watch the source directory in one terminal, automatically rebuilding when needed
jlpm run watch

# Run JupyterLab in another terminal
jupyter lab

With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).

By default, the jlpm run build command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:

jupyter lab build --minimize=False

Development uninstall

pip uninstall jupyterlab_flake8

In development mode, you will also need to remove the symlink created by jupyter labextension develop command. To find its location, you can run jupyter labextension list to figure out where the labextensions folder is located. Then you can remove the symlink named jupyterlab-flake8 within that folder.

Packaging the extension

See RELEASE

Acknowledgment

Contributors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].