Skip to main content

This is style50, with which code can be checked against the CS50 style guide

Project description

style50

This is style50, a tool with which code can be checked against the CS50 style guide.

Installation

pip install style50

In order to style check C, C++, or Java code, a recent version (>=14.0.0) of clang-format must be installed. clang-format may be downloaded here.

Windows

Along with most of CS50's command line tools, style50 supports being run on Windows but only via the Linux Subsystem in Windows 10. After launching it, style50 can be installed using the pip command above.

Usage

usage: style50 [-h] [-o MODE] [-y] [-i] [-v] [-V] [-E] [--ignore PATTERN]
               [--clang-format-style STYLE]
               FILE [FILE ...]

positional arguments:
FILE                  file or directory to lint

options:
-h, --help            show this help message and exit
-o, --output MODE     output mode, which can be character (default), split,
                      unified, score, json, html, or format
-y, --side-by-side    show side-by-side diff (equivalent to -o split)
-i, --in-place        rewrite files in place with style50 formatting
-v, --verbose         print full tracebacks of errors
-V, --version         show program's version number and exit
-E, --extensions      print supported file extensions (as JSON list) and
                      exit
--ignore PATTERN      paths/patterns to be ignored
--clang-format-style STYLE
                      clang-format style string or file:// URI (overrides
                      default CS50 config)

STYLE50_IGNORE is also supported as a comma-separated environment variable fallback for ignore patterns.

character, split, and unified modes output character-based, side-by-side, and unified (respectively) diffs between the inputted file and the correctly styled version. score outputs the raw percentage of correct (unchanged) lines, json outputs a JSON object containing structured results, html outputs browser-readable results, and format outputs only the formatted code.

Common examples

# Diff-only mode (default)
style50 foo.c
style50 foo.c bar.py
style50 *.c *.py

# In-place rewrite
style50 -i foo.c
style50 -i foo.c bar.py
style50 -i *.c *.py

# Side-by-side diff
style50 -y foo.c bar.py

# Ignore files/patterns
style50 --ignore "*/.*" foo.c bar.py

# Emit only formatted code (single file only)
style50 -o format foo.c

--output modes

--output supports:

  • character (default)
  • split
  • unified
  • score
  • json
  • html
  • format

-i and --output

-i/--in-place rewrites files and therefore cannot be combined with --output or --side-by-side.

Language Support

style50 currently supports the following languages:

  • C++
  • C
  • Python
  • Javascript
  • Java
  • HTML
  • CSS
  • SQL

Adding a new language

Adding a new language is very simple. Language checks are encoded as classes which inherit from the StyleCheck base class (see style50/languages.py for more real-world examples). The following is a template for style checks which allows style50 to check the imaginary FooBar language for style.

import re

from style50 import StyleCheck, Style50


class FooBar(StyleCheck):

    # REQUIRED: this property informs style50 what file extensions this
    # check should be run on (in this case, all .fb and .foobar files)
    extensions = ["fb", "foobar"]

    # REQUIRED: should return a correctly styled version of `code`
    def style(self, code):
        # All FooBar code is perfectly styled
        return code

    # OPTIONAL: should return the number of comments in `code`.
    # If this function is not defined, `style50` will not warn the student about
    # too few comments
    def count_comments(self, code):
        # A real-world, check would need to worry about not counting '#' in string-literals
        return len(re.findall(r"#.*", code))

All classes which inherit from StyleCheck are automatically registered with style50's Style50 class, making style50 easily extensible. Adding the following to the above code creates a script which checks the code that style50 already does as well as FooBar programs.

    # Style check the current directory, printing a unified diff
    Style50("unified").run(["."])

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

style50-3.0.0.tar.gz (28.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

style50-3.0.0-py3-none-any.whl (26.7 kB view details)

Uploaded Python 3

File details

Details for the file style50-3.0.0.tar.gz.

File metadata

  • Download URL: style50-3.0.0.tar.gz
  • Upload date:
  • Size: 28.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for style50-3.0.0.tar.gz
Algorithm Hash digest
SHA256 225ab8fa0deabd4d157d64442cbbcc6d6d8ded538a4c9af8402db0f233d5a99f
MD5 70036328bfda06f8b86580a42fd61b39
BLAKE2b-256 acdd171b685bfb0dcd8d3993d9636f961d72c6a2e637108379523dd0f0987e35

See more details on using hashes here.

File details

Details for the file style50-3.0.0-py3-none-any.whl.

File metadata

  • Download URL: style50-3.0.0-py3-none-any.whl
  • Upload date:
  • Size: 26.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for style50-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4f9768ff3326bbb1916c26935b375a020d4cbcc960d6c5dd0e782e7175610421
MD5 b3c953296fab83082d66ee9dab73020d
BLAKE2b-256 2644b49a0900b88415acceacd773c6495a669638e6baee3d04735b6af9565690

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page