@reflect.bridged.xyz/linter

0.0.3 • Public • Published

lint

lint is currently being developed for assistant, it's dependancy requires this repository to run under /assistant/packages/lint. which you can clone this repository directly, but not stable branches might have some incompatibility among the dependencies.

reflect's linting plugin & design lint engine

Rules & Documentation

available in figma

Installation

yarn add @reflect.bridged.xyz/linter

Example

example plugin for figma available here

Lints

  • Structure Lint
  • Visual Lint
  • Name Linting

Docs

linting specification docs at notion

Features

Basics

  • Missing textstyle (missing typography)
  • Non Library color (when using non system/library colors)
  • Missing Constraints (when no constraint is defined for complex layouts or components)
  • Similar Components
  • Case lint (when non developer-friendly naming convention is used)
    • wrong naming convention
    • name not defined
  • Not used screens
  • Not used components
  • naming conflicts
    • screen conflict
    • component conflict
  • Hidden layers warning
  • Overlapped layers warning

Visual Linting

  • aesthetic rate score
  • usability & reachability score
  • eye tracking score
  • reference score

Linting standards

STRUCTURAL (the underlyign graphical resource is owned by bridged.xyz and cannot be used without referencing.)

structure-linting

naming-linting

visual-linting

References

Originally forked from design-lint under MIT License

Design Lint

Design Lint Gif Example

Find and fix errors in your designs with Design Lint, a plugin for Figma.

View Plugin Page

Design Lint finds missing styles within your designs on all your layers. Ensure your designs are ready for development or design collaboration by fixing inconsistencies.

While it's running, Design Lint will update automatically as you fix errors. Clicking on layer will also select that layer in your design. Navigating between each error is fast and much easier than trying to find errors on your own.

Features

  • Selecting a layer with an error will also select the layer in Figma, letting you navigate your page and fix errors with full context.
  • Design Lint polls for changes and will update as you fix errors.
  • "Ignore" or "Ignore All" buttons let you skip special layers.
  • Use the "Select All" option to fix multiple errors at once that share the same value.
  • Need to skip layers like illustrations? Locked layers in Figma will be skipped from linting.
  • Custom border radius values can be set within settings and are stored in Client Storage.

Design Lint Ignore Example

Design Lint Selection Example

Because Design Lint doesn't try and manage your library, there's no logging in, accounts, or syncing. This open source plugin is designed to make fixing errors easy and let you get back to designing. Want to write specific rules for your own organization? Feel free to fork this repo and edit to your liking!

Install from the Figma Plugin Page

Although this plugin is open source, for most users you'll want to install from the Figma plugin community page. View Plugin Page

To Run Locally

  • Run yarn to install dependencies.
  • Run yarn build:watch to start webpack in watch mode.

To Edit

The react code, components, and UI can be found here App.tsx.
The Figma API, Storage, and Linting happens in controller.ts. Linting functions and rules can be found in lintingFunctions.ts.

How the Linting Works

Different nodes (also known as layers) have different properties to lint. First we loop through the nodes the user has selected. For each layer we determine that nodes type.

function determineType(node) {
    switch (node.type) {
      case "SLICE":
      case "GROUP": {
        // Groups styles apply to their children so we can skip this node type.
        let errors = [];
        return errors;
      }
      case "POLYGON":
      case "VECTOR":
      case "STAR":
      case "BOOLEAN_OPERATION":
      case "ELLIPSE": {
        return lintShapeRules(node);
      }
      case "FRAME": {
        return lintFrameRules(node);
      }
      case "INSTANCE":
      case "RECTANGLE": {
        return lintRectangleRules(node);
      }
      case "COMPONENT": {
        return lintComponentRules(node);
      }
      case "TEXT": {
        return lintTextRules(node);
      }
      case "LINE": {
        return lintLineRules(node);
      }
      default: {
        // Do nothing
      }
    }
  }

Some of these node types have the same requirements so there are generic functions that call multiple linting functions which are imported from lintingFunctions.ts.

function lintTextRules(node) {
    let errors = [];

    checkType(node, errors);
    checkFills(node, errors);
    checkEffects(node, errors);
    checkStrokes(node, errors);

    return errors;
  }

So for instance, this function runs the linting rules for typography, fills, effects, and strokes on this node since its a piece of text. A given node/layer can have multiple errors, which is why they're stored as an array on the node itself.

Changing the border radius default

If you plan on using this app as a private plugin you'll likely want to change the default border radius values which are [0, 2, 4, 8, 16, 24, 32]. This can be acheived by changing these values in App.tsx and in controller.ts.

Tooling

This repo is using:

Readme

Keywords

none

Package Sidebar

Install

npm i @reflect.bridged.xyz/linter

Weekly Downloads

2

Version

0.0.3

License

MIT

Unpacked Size

62.1 kB

Total Files

118

Last publish

Collaborators

  • softmarshmallow