Manuel Gall

11 papers A 2Journal 3Unranked 6
YearRankTypeTitle / Venue / Authors
2021 conf
BPM (Forum)
Manuel Gall, Stefanie Rinderle-Ma
2020 J jnl
Int. J. Cooperative Inf. Syst.
Manuel Gall, Stefanie Rinderle-Ma
2020 conf
BPM (PhD/Demos)
Karolin Winter, Manuel Gall, Stefanie Rinderle-Ma
2019 conf
BPM (PhD/Demos)
Manuel Gall, Stefanie Rinderle-Ma
2019 J jnl
CoRR
Manuel Gall, Stefanie Rinderle-Ma
2018 conf
BPMDS/EMMSAD@CAiSE
Manuel Gall, Stefanie Rinderle-Ma
2017 A conf
CAiSE
Manuel Gall, Stefanie Rinderle-Ma
2016 A conf
BPM
Walid Fdhila, Manuel Gall, Stefanie Rinderle-Ma, Juergen Mangler, Conrad Indiono
2016 J jnl
CoRR
Stefanie Rinderle-Ma, Manuel Gall, Walid Fdhila, Jürgen Mangler, Conrad Indiono
2015 conf
ER Workshops
Manuel Gall, Günter Wallner, Simone Kriglstein, Stefanie Rinderle-Ma
2015 conf
BPM (Demos)
Manuel Gall, Günter Wallner, Simone Kriglstein, Stefanie Rinderle-Ma
docs/linting.md
← Index docs/linting.md markdown
# Code Linting Guide

## Installation

```bash
pip install flake8 pylint black isort
```

## Quick Usage

### Check Code Quality
```bash
# Comprehensive analysis (recommended)
pylint redb/

# Quick style check
flake8 redb/

# Format code
black redb/

# Sort imports
isort redb/
```

### Check Only (No Changes)
```bash
black --check redb/
isort --check-only redb/
```

## Configuration

The project uses `pyproject.toml` for configuration. Key settings:

- **Line length**: 120 characters
- **Pylint**: Disabled overly strict warnings (docstrings, naming conventions)
- **Black**: Compatible with isort
- **Flake8**: Ignores common style issues

## Security-Focused Linting

For security analysis, install additional tools:

```bash
pip install pylint-security bandit
```

Run security checks:
```bash
# Pylint with security plugin
pylint --load-plugins=pylint_security redb/

# Bandit (security-focused)
bandit -r redb/
```

## Recommended Workflow

1. **Development**: Use `flake8` for quick feedback
2. **Pre-commit**: Run `pylint` for comprehensive analysis
3. **Formatting**: Use `black` and `isort` before commits
4. **Security**: Run `bandit` periodically

## IDE Integration

Most IDEs support these tools:
- **VS Code**: Install Python extension, configure linting
- **PyCharm**: Built-in support for all tools
- **Vim/Neovim**: Use ALE or similar plugins