admin管理员组文章数量:1344584
I'm using the Atom Code Editor for a VueJS Project with ESLINT (feross). By trying to quickly prototype a layout I get these errors.
Missing space before opening brace
Strings must use singlequote
Extra semicolon
During the prototype phase I would like ESLINT/ATOM to disable/ignore these errors and render the site anyways. How to do that?
I'm using the Atom Code Editor for a VueJS Project with ESLINT (feross). By trying to quickly prototype a layout I get these errors.
Missing space before opening brace
Strings must use singlequote
Extra semicolon
During the prototype phase I would like ESLINT/ATOM to disable/ignore these errors and render the site anyways. How to do that?
Share Improve this question asked Jul 31, 2018 at 7:08 TomTom 6,02421 gold badges85 silver badges134 bronze badges2 Answers
Reset to default 4You could temporarily turn off eslint. In my setup, inspecting build/webpack.base.conf.js
shows the following snippet:
module: {
rules: [
...(config.dev.useEslint ? [createLintingRule()] : []),
{
test: /\.vue$/,
The linting rule will enable eslint. Lets avoid that and set config.dev.useEslint
to false
. Go to config/index.js
and alter the following snippet:
// Use Eslint Loader?
// If true, your code will be linted during bundling and
// linting errors and warnings will be shown in the console.
useEslint: false,
In your .eslintrc
file, do the following:
"rules": {
"space-before-blocks": "off",
"quotes": "off",
"no-extra-semi": "off"
}
This will turn off the above rules. I would suggest instead of turning it off let it throw warning, so in future you remember to fix these issues.
ESLint has an awesome documentation: https://eslint/docs/rules/
本文标签: javascriptSettings for ESLINT to ignore warnings like quotextra semicolonquotStack Overflow
版权声明:本文标题:javascript - Settings for ESLINT to ignore warnings like "extra semicolon" - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743786038a2538697.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论