Skip to content

csinkers/Lizard

Repository files navigation

Lizard

A debugger targeting DosBox with a focus on reverse engineering

Attributions

This project has dependencies on:

Environment setup

Machine install:

Install csharpier VS 2022 plugin

Run pip install pre-commit

Project Install:

dotnet tool install csharpier

Create .csharpierrc:

{
    "printWidth": 120,
    "useTabs": false,
    "tabWidth": 4,
    "endOfLine": "auto"
}

Create .pre-commit-config.yaml:

repos:
  - repo: local
    hooks:
      - id: dotnet-tool-restore
        name: Install .NET tools
        entry: dotnet tool restore
        language: system
        always_run: true
        pass_filenames: false
        stages:
          - commit
          - push
          - post-checkout
          - post-rewrite
        description: Install the .NET tools listed at .config/dotnet-tools.json.
      - id: csharpier
        name: Run CSharpier on C# files
        entry: dotnet tool run dotnet-csharpier
        language: system
        types:
          - c#
        description: CSharpier is an opinionated C# formatter inspired by Prettier.

Run pre-commit install Test against all files: pre-commit run --all-files

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published