Coder Social home page Coder Social logo

huozhi / tshint Goto Github PK

View Code? Open in Web Editor NEW
1.0 3.0 0.0 87 KB

lightweight zero-config linter for ts/js projects

Home Page: https://npmjs.com/tshint

JavaScript 96.66% TypeScript 3.34%
ts typescript lint linter tslint zero-configuration javascript jslint

tshint's Introduction

tshint

super simple and lightweight zero-config linter for ts and js projects.

Intro

tshint is a zero-config linter based on eslint, with all the recommended rules built inside. By default, the base presets include

  • eslint:recommended
  • @typescript-eslint/recommended
  • @typescript-eslint/recommended-requiring-type-checking

Install

install tshint along with typescript

yarn add -D tshint typescript

Usage

Configure in package.json

{
  "scripts": {
    "lint": "tshint",
    "lint:fix": "tshint --fix", // lint and apply fixes
    "lint:src": "tshint src/**/*" // lint specific files
  }
}

Run lint with yarn scripts

yarn lint

Command Line Arguments

--fix: apply fixes onto the files

Custom Eslint Configurations

Eslint config fields extends, plugins and rules are available to be configured in eslintConfig field from package.json. They will be merged with default rules in tshint.

package.json

{
  "eslintConfig": {
    "plugins": [
      "jest"
    ],
    "extends": [
      "plugin:jest/recommended"
    ]
  }
}

tshint's People

Contributors

huozhi avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.