npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eslint-config-light

v1.5.3

Published

开箱即用的eslint配置

Downloads

30

Readme

eslint-config-light

1. 如何使用

.eslintrc.js文件:

module.exports = {
  extends: ['eslint-config-light'],
};

2. FAQ

2.1. Eslint版本不能太低(比如7.30.0),否则不支持import等插件。

报错信息大致如下:

AssertionError: ImportDeclaration should appear when the mode is ES6 and in the module context.

参考:https://github.com/eslint/eslint/issues/4344

2.2. @typescript-eslint版本不能低于5,否则不能与eslint@8一起使用

报错信息大致如下:

TypeError: Failed to load plugin '@typescript-eslint' declared in '.eslintrc.json': Class extends value undefined is not a constructor or null

解决方法:

"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",

参考:

  1. https://github.com/eslint/eslint/issues/15149
  2. https://github.com/typescript-eslint/typescript-eslint/issues/3738
  3. https://stackoverflow.com/questions/69513869/eslint-8-0-0-failed-to-load-plugin-typescript-eslint

2.3. 与业务库的冲突

下面是用本插件的经验。

业务库可以删除以下依赖,以及package-lock.json,然后重新npm install

eslint
eslint-plugin-*
eslint-config-*
babel-eslint
@typescript-eslint/eslint-plugin
@typescript-eslint/parser

2.4. 搭配 eslint-plugin-light

如果想同时使用 eslint-plugin-light 插件,需要这样配置:

module.exports = {
  root: true,
  extends: ['plugin:@tencent/light/recommended', 'eslint-config-light'],
}

注意顺序,eslint-plugin-light 插件在前,eslint-config-light 扩展在后。否则会报错:

Error: Error while loading rule '@typescript-eslint/dot-notation': 
You have used a rule which requires parserServices to be generated. 
You must therefore provide a value for the "parserOptions.project" 
property for @typescript-eslint/parser.

3. 发布

不需要手动升版本,执行以下命令:

npx standard-version --release-as patch

npm publish