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

vscode-eslint-prettier-helper

v1.8.5

Published

Auto set eslint prettier in vscode | 自动配置vscode eslint prettier环境

Downloads

20

Readme

vscode-eslint-prettier-helper

Automatically configure Visual Studio Code eslint + prettier code formatter | 自动配置vscode eslint prettier 环境

Usage | 使用方式

npx vscode-eslint-prettier-helper or install first npm i vscode-eslint-prettier-helper npx veph

Support | 支持环境

  • js
  • ts
  • vue2
  • vue3
  • vue2 + ts
  • vue3 + ts
  • react(Beta)
  • react + ts(Beta)
  • svelte3
  • svelte3-ts

What will it do? | 它会做什么?

  • dbaeumer.vscode-eslint (offline,version:2.2.3)
  • ~~octref.vetur (online) [vue2]~~
  • Vue.volar (online) [vue2,vue3]
  • svelte.svelte-vscode (online) [svelte]
  • .eslintrc.cjs
  • .eslintignore
  • .prettier.cjs
  • .prettierignore
  • jsconfig.json [vue2, vue3] // This file make vscode recognize '@' alias
eslint: {
  eslint: '8.37.0',
},
html: {
  'eslint-plugin-html': '7.1.0',
},
prettier: {
  prettier: '2.8.7',
  'eslint-config-prettier': '8.8.0',
  'eslint-plugin-prettier': '4.2.1',
},
js: {},
tsBase: {
  typescript: 'latest',
},
ts: {
  '@typescript-eslint/eslint-plugin': '5.57.1',
  '@typescript-eslint/parser': '5.57.1',
},
vue2: {
  'vue-eslint-parser': '9.1.0',
  'eslint-plugin-vue': '9.8.0',
},
vue3: {
  'vue-eslint-parser': '9.1.0',
  'eslint-plugin-vue': '9.8.0',
},
'vue2-ts': {
  'vue-eslint-parser': '9.1.0',
  'eslint-plugin-vue': '9.8.0',
  '@typescript-eslint/eslint-plugin': '5.57.1',
  '@typescript-eslint/parser': '5.57.1',
},
'vue3-ts': {
  'vue-eslint-parser': '9.1.0',
  'eslint-plugin-vue': '9.8.0',
  '@typescript-eslint/eslint-plugin': '5.57.1',
  '@typescript-eslint/parser': '5.57.1',
},
react: {
  'eslint-plugin-react': '7.31.10',
},
'react-ts': {
  '@typescript-eslint/eslint-plugin': '5.57.1',
  '@typescript-eslint/parser': '5.57.1',
},
svelte3: {
  'eslint-plugin-svelte': '2.25.0',
  'prettier-plugin-svelte': '2.10.0',
},
'svelte3-ts': {
  'eslint-plugin-svelte': '2.25.0',
  'prettier-plugin-svelte': '2.10.0',
  '@typescript-eslint/parser': '5.57.1',
  'svelte-eslint-parser': '0.24.2',
},
  • Windows: ${userHomeDir}/AppData/Roaming/Code/User/settings.json
  • Linux: ${userHomeDir}/.config/Code/User/settings.json Update vscode settings.json | 更新vscode setting.json配置
"editor.codeActionsOnSave": {
  "source.fixAll.eslint": true
}

when select vue2-ts,vue3-ts

"eslint.validate": ["typescriptreact"], // support tsx

when select svelte3,svelte3-ts

"eslint.validate": [
    "svelte"
],

The VScode version and the node version are as new as possible. | VScode 版本和node版本尽量新

ps

  • You don't need to install the prettier extension of vscode. | 不需要安装vscode的prettier扩展
  • After modify the prettierrc.js, we need restart eslint
    | 修改prettierrc.js配置后,请重启eslint 插件使其生效 (Press F1, and select ESLint: Restart ESLint Server)
  • vscode eslint plugin < 2.2.0 not support eslint@8
    | vscode eslint插件版本< 2.2.0 则不支持eslint@8
  • If it not work in vue-cli@4, Try npm remove @vue/cli-plugin-eslint babel-eslint, and remove eslint config in package.json if exist.
    | 如果在vue-cli中不生效,则尝试移除@vue/cli-plugin-eslint babel-eslint。package.json中,如有eslint配置,请删除。