terrierscript / semicolon-less-javascript

A list of resources for semicolon-less JavaScript (TypeScript) coding style.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Semicolon-less JavaScript

A list of resources for semicolon-less JavaScript (TypeScript) coding style.

Quick Start (How do we start semicolon-less style quickly?)

  1. Install eslint
  • $ npm install -D eslint
  1. Append rule semi and no-unexpected-multiline
{
  "rules": {
    "semi": [2, "never"],
    "no-unexpected-multiline": 2
  }
}

Contents

Documentation

Articles

Slides

Videos

Tools

Linting

Others

Projects

List of projects that using semicolonless style and related documents (style guide / pull request / issue).

License

CC0

About

A list of resources for semicolon-less JavaScript (TypeScript) coding style.