├── .eslintignore ├── .eslintrc ├── .eslintrc.js ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── img ├── editor-example.png ├── example.png ├── options.png └── settings.png ├── install.json ├── jupyterlab_flake8 ├── __init__.py └── _version.py ├── package.json ├── pyproject.toml ├── schema └── plugin.json ├── setup.py ├── src └── index.ts ├── style ├── base.css ├── index.css └── index.js └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | **/*.d.ts 5 | tests 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/.eslintrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/RELEASE.md -------------------------------------------------------------------------------- /img/editor-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/img/editor-example.png -------------------------------------------------------------------------------- /img/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/img/example.png -------------------------------------------------------------------------------- /img/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/img/options.png -------------------------------------------------------------------------------- /img/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/img/settings.png -------------------------------------------------------------------------------- /install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/install.json -------------------------------------------------------------------------------- /jupyterlab_flake8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/jupyterlab_flake8/__init__.py -------------------------------------------------------------------------------- /jupyterlab_flake8/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/jupyterlab_flake8/_version.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/pyproject.toml -------------------------------------------------------------------------------- /schema/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/schema/plugin.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/setup.py -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/src/index.ts -------------------------------------------------------------------------------- /style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/style/base.css -------------------------------------------------------------------------------- /style/index.css: -------------------------------------------------------------------------------- 1 | @import url('base.css'); 2 | -------------------------------------------------------------------------------- /style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlshapiro/jupyterlab-flake8/HEAD/tsconfig.json --------------------------------------------------------------------------------