Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 463 Bytes

prefer-twine.md

File metadata and controls

18 lines (12 loc) · 463 Bytes

Prefer Twine over Bindings as the name for twine imports. (prefer-twine)

Twine has historically been referred to by the globals Twine and Bindings. In order to improve clarity and consistency, we will be using Twine exclusively going forward.

Rule Details

The following patterns are considered warnings:

import Bindings from 'twine';
import tw from 'twine';

The following patterns are not warnings:

import Twine from 'twine';