- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Eslint error in vscode terminal
获得 CR 的 ESLint 错误 - 即使我有带有 Windows 行结尾的 git pull 代码。
这发生在带有 EsLint 插件的 Visual Studio Code (1.7.0) 上
直到我最近将我的 git 更新到最新版本 (2.20.0).windows.1 才发生这种情况
我的 eslintrc 文件
{
"plugins": [
"jsx-a11y",
"react",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"prettier"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"generators": true,
"experimentalObjectRestSpread": true
}
},
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"jquery": true
},
"globals": {
"define": true
},
"rules": {
"array-callback-return": 1,
"camelcase": 2,
"complexity": 1,
"consistent-this": [
1,
"self"
],
"curly": 2,
"dot-notation": 1,
"eqeqeq": 2,
"func-names": [
1,
"never"
],
"func-style": [
2,
"expression"
],
"linebreak-style": ["error", "windows"],
"max-depth": [1, 10],
"max-len": [
1,
{
"code": 120,
"ignoreUrls": true
}
],
"max-nested-callbacks": [
1,
3
],
"max-params": [
1,
3
],
"max-statements-per-line": [
1,
{
"max": 1
}
],
"new-cap": 2,
"newline-after-var": 1,
"newline-before-return": 1,
"no-alert": 2,
"no-array-constructor": 2,
"no-bitwise": 2,
"no-caller": 2,
"no-catch-shadow": 2,
"no-cond-assign": [
2,
"except-parens"
],
"no-console": 2,
"no-continue": 2,
"no-duplicate-imports": 2,
"no-else-return": 1,
"no-eq-null": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-floating-decimal": 1,
"no-global-assign": 2,
"no-implicit-coercion": 1,
"no-implicit-globals": 2,
"no-implied-eval": 2,
"no-iterator": 2,
"no-labels": 2,
"no-lone-blocks": 1,
"no-lonely-if": 2,
"no-loop-func": 2,
"no-magic-numbers": 0,
"no-mixed-operators": 0,
"no-multi-str": 1,
"no-native-reassign": 2,
"no-negated-condition": 1,
"no-nested-ternary": 2,
"no-new-func": 2,
"no-new-object": 2,
"no-new-wrappers": 2,
"no-octal-escape": 2,
"no-param-reassign": 2,
"no-undef": 2,
"no-proto": 2,
"no-return-assign": 2,
"no-return-await": 1,
"no-script-url": 2,
"no-self-compare": 2,
"no-sequences": 2,
"no-shadow": 2,
"no-shadow-restricted-names": 2,
"no-tabs": 1,
"no-template-curly-in-string": 1,
"no-throw-literal": 1,
"no-undef-init": 1,
"no-undefined": 1,
"no-underscore-dangle": 1,
"no-unmodified-loop-condition": 2,
"no-unneeded-ternary": 1,
"no-unsafe-negation": 1,
"no-unused-expressions": 2,
"no-unused-vars": 2,
"no-use-before-define": 2,
"no-useless-call": 2,
"no-useless-computed-key": 1,
"no-useless-constructor": 1,
"no-useless-concat": 1,
"no-useless-escape": 1,
"no-useless-rename": 1,
"no-useless-return": 1,
"no-var": 2,
"no-void": 2,
"no-warning-comments": 1,
"no-with": 2,
"object-shorthand": 1,
"one-var": [
2,
"never"
],
"prefer-arrow-callback": 1,
"prefer-const": 1,
"prefer-rest-params": 1,
"prefer-spread": 1,
"prefer-template": 1,
"prettier/prettier": ["error", {
"printWidth": 120,
"singleQuote": true
}],
"quotes": [
2,
"single"
],
"radix": [
1,
"as-needed"
],
"require-await": 1,
"spaced-comment": [
1,
"always"
],
"strict": [
2,
"safe"
],
"yoda": [
1,
"never"
],
"react/jsx-equals-spacing": ["warn", "never"],
"react/jsx-no-duplicate-props": ["warn", { "ignoreCase": true }],
"react/jsx-no-undef": "warn",
"react/jsx-pascal-case": ["warn", { "allowAllCaps": true, "ignore": [] }],
"react/jsx-space-before-closing": "warn",
"react/jsx-uses-react": "warn",
"react/jsx-uses-vars": "warn",
"react/no-danger-with-children": "warn",
"react/no-deprecated": "warn",
"react/no-direct-mutation-state": "warn",
"react/no-is-mounted": "warn",
"react/react-in-jsx-scope": "error",
"react/require-render-return": "warn",
"react/style-prop-object": "warn",
"jsx-a11y/anchor-has-content": "warn",
"jsx-a11y/aria-props": "warn",
"jsx-a11y/aria-proptypes": "warn",
"jsx-a11y/aria-role": "warn",
"jsx-a11y/aria-unsupported-elements": "warn",
"jsx-a11y/click-events-have-key-events": "warn",
"jsx-a11y/heading-has-content": "warn",
"jsx-a11y/href-no-hash": "warn",
"jsx-a11y/html-has-lang": "warn",
"jsx-a11y/img-has-alt": "warn",
"jsx-a11y/img-redundant-alt": "warn",
"jsx-a11y/label-has-for": "warn",
"jsx-a11y/lang": "warn",
"jsx-a11y/mouse-events-have-key-events": "warn",
"jsx-a11y/no-access-key": "warn",
"jsx-a11y/no-marquee": "warn",
"jsx-a11y/no-onchange": "warn",
"jsx-a11y/no-static-element-interactions": "warn",
"jsx-a11y/onclick-has-focus": "warn",
"jsx-a11y/onclick-has-role": "warn",
"jsx-a11y/role-has-required-aria-props": "warn",
"jsx-a11y/role-supports-aria-props": "warn",
"jsx-a11y/scope": "warn",
"jsx-a11y/tabindex-no-positive": "warn"
}
}
最佳答案
这可能会有所帮助,将其添加到您的 .eslintrc.json 文件中:
"rules": {
"prettier/prettier": [
"error",
{
...
"endOfLine": "auto"
}
]
关于reactjs - Visual Studio Code [eslint] 在 windows 上删除 'CR' [prettier/prettier],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53750853/
我尝试使用: prettier --config .prettierrc.json --check . 我的配置是这样的: { "semi": true } 并且它没有检查子目录。我怎样才能告诉
我正在尝试运行 Prettier CLI 工具,我想做的是一次针对多个文件运行它,这可能吗? 我知道我们可以使用 glob 模式,但这些文件不容易与模式匹配。因为我正在尝试针对预提交 Hook 中的暂
我想把 Prettier 和 ESLint 一起用,但是一个接一个用就遇到了一些冲突。我看到有这三个包似乎允许它们串联使用: prettier-eslint eslint-plugin-prettie
当使用 prettier/prettier-now 在保存时格式化时,当一个函数环绕另一个函数时,它会换行,我想知道是否有一个停止这种行为? 例如: 期望的输出: app.get('/campgrou
我正在编辑一个不使用 Prettier 的存储库,但我的编辑器(Emacs)根据文件扩展名加载 prettier-js-mode 。因此,在保存文件时,我收到了一堆空白更改,但我无法提交这些更改,因为
我有反应 native 代码。我安装 ESLint。我用它但它显示错误。 当我使用单引号时它显示错误 Replace 'react-native' with "react-native" eslint
我有一个问题,即 VSCode 中的 HTML 文件格式“保存时”与使用命令行时 Prettier 的格式不同。 我的用户设置(更改这些值似乎没有任何区别): { "[html]": {
我们的项目使用 Prettier 和 ESLint。通常它们可以很好地协同工作,但我们遇到了两者冲突的问题。我不知道为什么,我不知道如何修复它,而且我无法禁用更漂亮的线路,因为我得到了错误。 我们设置
我有一个简单的例子,其中语句没有分号。 Prettier 设置的 semi 为 false,而 eslint 的 semi 为 true。为了不让它们之间发生冲突,我安装了 eslint-config
我正在将 VS Code 与 Prettier 1.7.2 和 ESLint 1.7.0 结合使用。在每个换行之后我得到: [eslint] Delete `CR` [prettier/prettie
我正在尝试消除与 @vue/prettier 相关的错误.我已经尝试了一些东西,但它似乎引发了更多错误。 我的 .eslintrc.js如下: module.exports = { root: t
最近我在做一个 vue3/vite + ts 项目,想添加 eslint 和 prettier,但我很困惑我应该在 eslint 文件中使用哪些设置(“扩展”部分)和/或如何拼写它们。如果我看官方的
我有一个使用 vue cli 创建的 vue 应用程序,我使用的版本是 vue2(带有 eslint 和 prettier)。 我可以跑 npm run serve并加载我的页面。但是在 Visual
我熟悉 node_modules/.bin和 npx工具。 我最近注意到我们的一个配置运行: npx prettier@2 这实际上产生不同的输出 npx prettier 当以这种方式调用时,似乎更
我是网络编程新手,我知道我们可以输入 npm i -D prettier将 prettier 安装为 devDependency 之一并用它来格式化我们的代码。然后我发现有一个 VS Code 扩展
Eslint error in vscode terminal 获得 CR 的 ESLint 错误 - 即使我有带有 Windows 行结尾的 git pull 代码。 这发生在带有 EsLint 插
有什么方法可以让我在所有项目中普遍停止格式化 .min 文件,而无需单独将每个文件列入白名单? 最佳答案 您可以创建一个 .prettierignore看起来像这样的文件: *.min.* 但是,您仍
我有一个类似这样的 typescript 项目结构: --workflows |--app1 |--src |--app2 |--src 我想更漂亮
我想知道是否有一条规则可以在 typescript 中使用 prettier(项目根目录中的 .prettierrc)在函数/语句和注释之间添加一个新行。 当前行为: } else if (requ
有没有办法禁用 打印宽度 规则警告更漂亮? 我希望能够确定自己的行长以提高可读性。在某些情况下,我想要换行,而在其他情况下,我不想要。 我在我的 .prettierrc 文件中试过这个: { "s
我是一名优秀的程序员,十分优秀!