Hangxuan Cui

15 papers C 2Journal 10Unranked 3
YearRankTypeTitle / Venue / Authors
2022 conf
SiPS
Lijuan Li, Hangxuan Cui, Yangcan Zhou, Zhongfeng Wang
2022 J jnl
IEEE Trans. Very Large Scale Integr. Syst.
Suwen Song, Hangxuan Cui, Zhongfeng Wang
2022 J jnl
IEEE Trans. Very Large Scale Integr. Syst.
Yuxing Chen, Hangxuan Cui, Zhongfeng Wang
2022 J jnl
IEEE Trans. Circuits Syst. II Express Briefs
Yuxing Chen, Hangxuan Cui, Zhongfeng Wang
2021 J jnl
IEEE Commun. Lett.
Hangxuan Cui, Suwen Song, Zhongfeng Wang
2021 conf
ISVLSI
Keyue Deng, Hangxuan Cui, Jun Lin, Zhongfeng Wang
2021 J jnl
IEEE Trans. Circuits Syst. I Regul. Pap.
Hangxuan Cui, Fakhreddine Ghaffari, Khoa Le, David Declercq, Jun Lin, Zhongfeng Wang
2020 J jnl
IEEE Trans. Circuits Syst. II Express Briefs
Suwen Song, Hangxuan Cui, Jing Tian, Jun Lin, Zhongfeng Wang
2020 J jnl
IEEE Trans. Circuits Syst. II Express Briefs
Yuxing Chen, Hangxuan Cui, Jun Lin, Zhongfeng Wang
2020 J jnl
IEEE Trans. Very Large Scale Integr. Syst.
Hangxuan Cui, Jun Lin, Zhongfeng Wang
2019 conf
ISCIT
Hangxuan Cui, Khoa Le, Fakhreddine Ghaffari, David Declercq, Jun Lin, Zhongfeng Wang
2019 C conf
ISCAS
Hangxuan Cui, Jun Lin, Suwen Song, Zhongfeng Wang
2019 J jnl
IEEE Trans. Circuits Syst. II Express Briefs
Hangxuan Cui, Jun Lin, Zhongfeng Wang
2019 C conf
APCC
Hangxuan Cui, Khoa LeTrung, Fakhreddine Ghaffari, David Declercq, Jun Lin, Zhongfeng Wang
2019 J jnl
IEEE Trans. Circuits Syst. I Regul. Pap.
Hangxuan Cui, Jun Lin, Zhongfeng Wang
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