fix: 修复eslint不生效问题 Browse files Loading branch information gaoyuan1011 committed May 10, 2024 1 parent e2c11cd commit 159f50e Showing 3 changed files with 9 additions and 6 deletions. Whitespace Ignore whitespace Split Unified .npmrc eslint.config.js package.json ...
"lint:eslint": "eslint src/**/*.{vue,js,ts,tsx} --fix", 1.
在package.json 的 scripts 节点中添加如下节点 "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore" 1. 在.eslintrc.js 在添加如下选项,然后运行 npm run lint 命令即可生效 "plugin:prettier/recommended", "prettier"; 1....
fix: 修复 eslint 自动格式化不生效的问题 Browse filesBrowse the repository at this point in the history Loading branch information woai3ccommittedSep 20, 2021 1 parent3ea9b8bcommit87b2114 Show file tree Hide file tree Showing5 changed fileswith20 additionsand24 deletions....
eslint运行在脚本和IDE语法检测2种情况。确保 eslint插件 和 项目eslint 版本一致.vue,.ts 文件不生效,确保 *.{js,ts,vue} 中间没有空格"lint-staged": { "*.{js,ts,vue}": [ "eslint --fix&…
感觉是.eslintignore没有生效啊。找了网上没有找到解决方法。 最后打开package.json发现lint配置如下: "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" 改成: "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,...
我在一个项目中尝试了 ESLint ,输入eslint init后按照提示最终选择了非常出名的 airbnb 的代码风格,结果整个项目几乎所有文件都被标红,尝试使用--fix却无法全部修复,内心十分沮丧。 现在想想,那时候的我对 ESLint 的认知是不完整的,在那时候的我看来 ESLint 就是辅助我们保持代码风格一致的工具,airbnb 的 js ...
{"eslint.debug":true,"eslint.execArgv":null,"eslint.alwaysShowStatus":true,"editor.codeActionsOnSave":{"source.fixAll":true,"source.fixAll.eslint":true},"eslint.validate":["javascript","vue","html","typescript",],"[vue]":{"editor.defaultFormatter":"octref.vetur"},"eslint.format....
但是保存代码时格式化并不是按该文件的配置而是按 Prettier 的配置 问题解决 修改Settings.json 文件 win:ctrl + shift + p mac:command + shift + p { // ... // 注意这个是 false,很大原因都是因为这个 "editor.formatOnSave": false, "editor.codeActionsOnSave": { "source.fixAll.eslint": true...
ESLint: Too many blank lines at the end of file. Max of 0 allowed. (no-multi) 想要有个快捷键全部一键修复。 在keymap里面找到Plu'g-ins,里面有eslint,找到修复eslint问题(Fix eslint probloms) 点击右键,会出现下面的设置快捷操作。 在里面设置自己方便的键盘快捷操作,...