Skip to content

hpi-swa-teaching/SwaLint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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]