--- description: Enforces general Python coding style guidelines including indentation, line length, and commenting style. globs: **/*.py --- - Use strict mode. - Indent using 4 spaces. - Limit line length to 120 characters. - Use # for single-line comments and ''' for multi-line comments. - Require comments in the code.