On this page
Reference_files_create
# ==============================================================================
# CONFIGURATION FILES REFERENCED
# ==============================================================================
#
# Create these files in your project root:
#
# 1. pyproject.toml (for Black, isort, Bandit):
# [tool.black]
# line-length = 88
# target-version = ['py311']
#
# [tool.isort]
# profile = "black"
# line_length = 88
#
# [tool.bandit]
# exclude_dirs = ["tests", ".venv"]
#
# 2. .flake8 (for flake8):
# [flake8]
# max-line-length = 88
# extend-ignore = E203,W503
# exclude = .venv,migrations
#
# 3. .eslintrc.js (for ESLint):
# module.exports = {
# extends: [
# 'eslint:recommended',
# 'plugin:@typescript-eslint/recommended',
# 'plugin:react/recommended',
# 'plugin:react-hooks/recommended'
# ],
# parser: '@typescript-eslint/parser',
# plugins: ['@typescript-eslint', 'react', 'react-hooks'],
# rules: {
# // Your rules
# }
# };
#
# 4. .prettierrc (for Prettier):
# {
# "semi": true,
# "singleQuote": true,
# "tabWidth": 2,
# "trailingComma": "es5",
# "printWidth": 100
# }
#
```