Skip to content

Latest commit

 

History

History
54 lines (41 loc) · 2.15 KB

README.md

File metadata and controls

54 lines (41 loc) · 2.15 KB

SwaLint Build Status Build status

A code critics tool for Smalltalk projects. After installation you can open the SwaLint Code Critics via Apps.

Please visit the SwaLint wiki for further information, future plans and technical advice.

Installation

Latest release

There are two ways of installing the latest release. You can either use a SAR file or Metacello.

SAR file

Go to the latest release of SwaLint, download the .sar file, drag and drop it into your image and choose "install SAR".

Metaclleo

  1. Make sure you have metacello installed.
  2. Load the project with (it might ask you to click "Proceed" several times):
[Metacello new
  baseline: 'SwaLint';
  repository: 'github://hpi-swa-teaching/SwaLint:release/packages';
  get;
  load: #default]
    on: MetacelloSkipDirtyPackageLoad
    do: [:e | e resume: false]

Latest develop version

Metaclleo

  1. Make sure you have metacello installed.
  2. Load the project with (it might ask you to click "Proceed" several times):
[Metacello new
  baseline: 'SwaLint';
  repository: 'github://hpi-swa-teaching/SwaLint:develop/packages';
  get;
  load: #default]
    on: MetacelloSkipDirtyPackageLoad
    do: [:e | e resume: false]