All Projects → standard → ts-standard

standard / ts-standard

Licence: MIT license
Typescript style guide, linter, and formatter using StandardJS

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to ts-standard

Linter Js Standard
Atom linter plugin for JavaScript, using JavaScript Standard Style
Stars: ✭ 95 (-71.89%)
Mutual labels:  linter, standard
Typescript Tslint Plugin
TypeScript TSLint language service plugin
Stars: ✭ 270 (-20.12%)
Mutual labels:  tslint, linter
Eslint Config Standard
ESLint Config for JavaScript Standard Style
Stars: ✭ 2,229 (+559.47%)
Mutual labels:  linter, standard
Standard
🌟 JavaScript Style Guide, with linter & automatic code fixer
Stars: ✭ 26,433 (+7720.41%)
Mutual labels:  linter, standard
Sonarts
Static code analyzer for TypeScript
Stars: ✭ 776 (+129.59%)
Mutual labels:  tslint, linter
Ale Sensible
Pretty, responsive and smooth defaults for a sane ALE, gets you started in 30 seconds
Stars: ✭ 30 (-91.12%)
Mutual labels:  linter, standard
eslint-config
An ESLint shareable config that I used in my projects
Stars: ✭ 15 (-95.56%)
Mutual labels:  tslint, linter
Awesome Standard
Documenting the explosion of packages in the standard ecosystem!
Stars: ✭ 300 (-11.24%)
Mutual labels:  linter, standard
Tslint
🚦 An extensible linter for the TypeScript language
Stars: ✭ 5,922 (+1652.07%)
Mutual labels:  tslint, linter
Lynt
✨ A zero config JavaScript linter with support for Typescript, Flow, and React.
Stars: ✭ 390 (+15.38%)
Mutual labels:  tslint, linter
Xo
❤️ JavaScript/TypeScript linter (ESLint wrapper) with great defaults
Stars: ✭ 6,277 (+1757.1%)
Mutual labels:  linter, code-style
spec
🐣 easy to use eslint/stylelint/tslint/prettier/...
Stars: ✭ 60 (-82.25%)
Mutual labels:  tslint, linter
Pep8speaks
A GitHub app to automatically review Python code style over Pull Requests
Stars: ✭ 546 (+61.54%)
Mutual labels:  linter, code-style
Eslint Config Standard Jsx
ESLint Shareable Config for JSX support in JavaScript Standard Style
Stars: ✭ 79 (-76.63%)
Mutual labels:  linter, standard
Eslint Config Standard React
ESLint Shareable Config for React/JSX support in JavaScript Standard Style
Stars: ✭ 416 (+23.08%)
Mutual labels:  linter, standard
TSLint.MSBuild
[Deprecated] An MSBuild task for running TSLint.
Stars: ✭ 13 (-96.15%)
Mutual labels:  tslint, linter
standard-www
👆 Website for JavaScript Standard Style (@standard)
Stars: ✭ 28 (-91.72%)
Mutual labels:  linter, standard
standard-packages
List of packages that use `standard`
Stars: ✭ 32 (-90.53%)
Mutual labels:  linter, standard
Lint Review
An automated code linting bot that integrates various code lint tools with github pull requests.
Stars: ✭ 279 (-17.46%)
Mutual labels:  tslint, linter
Aurora
📦 A set of configs and rules for Typescript projects.
Stars: ✭ 30 (-91.12%)
Mutual labels:  tslint, linter

Tests npm npm License TS-Standard - TypeScript Standard Style Guide Dependabot badge

ts-standard

TypeScript Style Guide, with linter and automatic code fixer based on StandardJS

💾 Install

npm install --save-dev ts-standard

⌨️ Basic Usage

ts-standard

Enable auto code fixing

ts-standard --fix

Note: A tsconfig.json or similar project file is required. See TSConfig section below for more details

📜 Help

ts-standard - Standard for TypeScript! (https://github.com/standard/ts-standard)

Usage:
  ts-standard <flags> [FILES...]

  If FILES is omitted, all JavaScript/TypeScript source files (*.js, *.jsx, *.mjs, *.cjs, *.ts, *.tsx)
  in the current working directory are checked, recursively.

  Certain paths (node_modules/, coverage/, vendor/, *.min.js, and
  files/folders that begin with '.' like .git/) are automatically ignored.

  Paths in a project's root .gitignore file are also automatically ignored.

Flags:
      --fix       Automatically fix problems
  -p, --project   Specify ts-config location (default: ./tsconfig.eslint.json or ./tsconfig.json)
      --version   Show current version
  -h, --help      Show usage information

Flags (advanced):
      --stdin     Read file text from stdin
      --ext       Specify JavaScript/TypeScript file extensions
      --global    Declare global variable
      --plugin    Use custom eslint plugin
      --env       Use custom eslint environment
      --parser    Use custom ts/js parser (default: @typescript-eslint/parser)

🧬 TSConfig: Linting with Type Information

By default ts-standard will search the current working director (cwd) for the following in order

  1. tsconfig.eslint.json
  2. tsconfig.json

You can also manually configure the location of the tsconfig file by either passing the path to the --project flag or adding a ts-standard configuration property to your package.json file.

{
  "ts-standard": {
    "project": "path/to/tsconfig.json"
  }
}

🗑 Ignoring files and folders

You can add an ignore property to your package.json ts-standard configuration settings.

{
  "ts-standard": {
    "ignore": [
      "dist",
      "src/**/*.js"
    ]
  }
}

🚫 Please change X rule

This project has no control over the rules implemented, as such this project cannot change any of the rules that have been configured. If you want to discuss the rules, please visit the rules configuration repo eslint-config-standard-with-typescript.

🧙 Why

This utility was designed to be the standard equivalent for typescript. Underneath the hood, this utility uses the same standard-engine and combines that engine with the official eslint-config-standard-with-typescript ruleset.

You can also choose to just use eslint with the eslint-config-standard-with-typescript shareable config instead and achieve the same results as this project. But ts-standard saves you from having to manually install all the extra dependencies and may reduce configuration overhead.

🎉 Special Thanks

Special thanks to standard for inspiration and some shared code and to eslint-config-standard-with-typescript for creating a typescript specific standard.

📋 Contributing Guide

I welcome all pull requests. Please make sure you add appropriate test cases for any features added. Before opening a PR please make sure to run the following scripts:

  • npm run lint:standard checks for code errors and format according to standard
  • npm test make sure all tests pass
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].