Skip to content

hpi-swa-teaching/SwaLint

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

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]