Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
/lyntPublic

✨ A zero config JavaScript linter with support for Typescript, Flow, and React.

License

NotificationsYou must be signed in to change notification settings

saadq/lynt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lynt

A zero config JavaScript linter with support for React, Flow, and Typescript.

Build Statuslinter: lyntstyle: prettiertests

Lynt has two main philosophies:

  1. Zero configuration by default. Out of the box, Lynt is a working linter and does not need any configuration. However, if you would like to add or remove rules from the default Lynt config, you have the option to do so.
  2. No style rules. Lynt is completely unopinionated when it comes to code style. It doesn't care whether or not you use semicolons, tabs or spaces, trailing commas, etc. Lynt only handles the error checking side of things and it leaves code style up to better-suited tools likeprettier.

The real value of ESLint is in the non-style rules that prevent common errors.

– Nicholas C. Zakas, the creator of ESLint.


output

How It Works

Under the hood, Lynt usesESLint andTSLint to lint your files.

It will know which linter to use as well as which rules/parsers/ignores/etc to apply based on the options you pass to it.

Installation

Make sure you havenode andnpm installed first.

You can install the package locally for a single project:

$ npm install lynt --save-dev

Or you can install it globally (not recommended):

$ npm install lynt --global

Usage

If you want to lint all your project files, you can just run thelynt command by itself.

Add a script to yourpackage.json:

{"scripts": {"lint":"lynt"  }}

And then run the script in your terminal whenever you want to lint your code:

$ npm run lint

By default, folders likedist andnode_modules are ignored.

If you only want to lint a subset of your project or individual files, you can pass globs:

{"scripts": {"lint":"lynt src/**/*.js"  }}

You can use flags to add support for Flow, React, or TypeScript. For example, if you were using TypeScript and React, you can set yourlint script to:

{"scripts": {"lint":"lynt --typescript --react"  }}

You can see a full list of flags you can pass tolynt in theCLI section.

Notes on TypeScript Usage

Lynt uses TSLint to lint TypeScript files, and some TSLint rules need to get information from your project'stsconfig.json file.

If yourtsconfig.json is in your root project folder, just run:

$ lynt --typescript

If yourtsconfig.json file is somewhere else (for example,./config/tsconfig.json, you can point to it with a--project flag.

$ lynt --typescript --project config

If you havelynt installed globally and are trying to use it with--typescript, you will need to make sure that you havetypescript installed globally as well.

CLI

  Usage    $ lynt [files] <options>  Options    --typescript   Add support for TypeScript.    --flow         Add support for FlowType.    --react        Add support for React.    --ignore       Glob patterns for paths to ignore.    --fix          Automatically fix linting issues.    --global       Add support for a given global variable.    --env          Add support for a given environment.    --json         Get lint results in JSON format instead of default "stylish" format.    --project      Specify your project's main directory if it isn't in the root (only use with --typescript).  JavaScript Examples    $ lynt    $ lynt --react    $ lynt --react --flow --env jest    $ lynt src    $ lynt src --ignore out/**/*.* --ignore tests/**/*.*    $ lynt src --global chrome --global atom  TypeScript Examples    $ lynt --typescript    $ lynt --typescript --react    $ lynt --typescript --project .    $ lynt src --typescript    $ lynt src --typescript --ignore out/**/*.* --ignore tests/**/*.*

Configuration

You can specify your Lynt configuration in one of three ways:

  1. Use CLI flags:
$ lynt --typescript --react --ignore tests/**/*.* --ignore fixtures/**/*.*
  1. Have a"lynt" property in yourpackage.json:
{"lynt": {"typescript":true,"react":true,"ignore": ["tests/**/*.*","fixtures/**/*.*"]  }}
  1. Have a.lyntrc file in your root project folder:
{"typescript":true,"react":true,"ignore": ["tests/**/*.*","fixtures/**/*.*"]}

Rule Configuration

If you want to turn off any of the defaultlynt rules, or add your own custom rules, you can add arules object in your configuration.Note that rule configuration cannot be done from the CLI, you must use alynt property inpackage.json or use a.lyntrc file.

Disabling a default rule

You can set a value to'off' to turn off a default rule.

{"rules": {"curly":"off","no-unused-vars":"off"  }}

Adding a rule

If you want to add a rule, you can set it toon to use the rule's default setting, or set it to something more complicated.

{"rules": {"prefer-const":"on","no-console":"on","no-magic-numbers": ["error", {"ignore": [1] }]  }}

Note: Style rules will still be ignored.

API

importlynt,{format}from'lynt'

or

const{default:lynt, format}=require('lynt')

lynt(files[, options]) => LyntResults

Uses ESLint or TSLint to lint a given set of files. Returns an array of LyntResult objects (see below to see its properties).

  • files – A string or array of strings of file paths to lint.Required.
  • options – A configuration object that lets you customize how lynt works.Optional

Here are the possible options you can pass:

{typescript?:boolean  flow?:boolean  react?:boolean  ignore?:string|Array<string>fix?:boolean  global?:string|Array<string>env?:string|Array<string>json?:string|Array<string>project?:string,rules?:{[ruleName:string]:any}}

See theCLI section to see a detailed description of what each option is for.

Example (no options):

importlyntfrom'lynt'constresults=lynt(['foo.js','bar.js'])console.log(results)

Example (with options):

importlyntfrom'lynt'constoptions={flow:true,react:true,rules:{'no-unused-vars':'off'}}constresults=lynt(['foo.js','bar.js'],options)console.log(results)

LyntResult Example:

{  filePath:string  errors:Array<{ruleName:stringmessage:stringline:numbercolumn:numberendLine?:numberendColumn?:number}>  errorCount:number  fixCount:number}

format(lintResults) => string

Formats an array of LyntResult objects (like the one returned from callinglynt()) into a nice looking table.

  • lintResults – An array of LyntResult objects.

Example:

importlynt,{format}from'lynt'constresults=lynt(['foo.js','bar.js'])consttable=format(results)console.log(table)

Badge

You can show off that your project uses Lynt with this badge:

linter: lynt

Just put the following in your README:

[![linter: lynt](https://img.shields.io/badge/linter-lynt-E81AAF.svg)](https://github.com/saadq/lynt)

FAQ

Why notstandard orxo?

I think these are awesome projects, and I have been a user of both. I definitely drew a lot of inspiration from them – however, one the main philosophies oflynt was to be an error-checker, not a style guide. Bothstandard andxo are very opinionated when it comes to style.xo is actually configurable, so you can manually remove all the style rules, but it is still troublesome when trying to use it with TypeScript and Flow – withlynt it is seamless.

Are the current rules set in stone?

Whilelynt is still in v0.X, the rules are considered to be tentative – there will probably be rules being added in and removed. Once Lynt reaches a point where most are happy with the rules, v1 will be released and rules will change a lot less often. New rules will be added as ESLint and TSLint introduce them though and will be introduced to Lynt as a major version upgrade. However, at no point will any style rules be accepted as part oflynt.

How can I voice my opinion about some of the linting rules?

The best way would be to open up a GitHub issue and people will be able to chime in with their opinion.

Are there any editor plugins?

Unfortunately, I haven't gotten around to trying to make any yet. I can definitely use some help in this department, so if anyone would like to try to make a plugin for their favorite editor it would be greatly appreciated! Also, please let me know if there's anything I can improve with the API in order to make editor integration easier.

License

MIT


[8]ページ先頭

©2009-2025 Movatter.jp