Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 256 Bytes

Readme.md

File metadata and controls

16 lines (12 loc) · 256 Bytes

Import Spaces JSCS Plugin

Rules:

requireImportSpaces: true

This is wrong:

import {something} from "lib";

This is right:

import { something } from "lib";

Fortunately jscs can turn the one into the other for you automatically!