最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Settings for ESLINT to ignore warnings like "extra semicolon" - Stack Overflow

programmeradmin2浏览0评论

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 badges
Add a ment  | 

2 Answers 2

Reset to default 4

You 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/

发布评论

评论列表(0)

  1. 暂无评论