search

Home  >  Q&A  >  body text

javascript - Why is eslint checking so troublesome?

Can you see what's wrong?

  loadMore () {
    this.loading = true
    setTimeout (() => {
      let last = this.list[this.list.length - 1]
      for (let i = 1; i <= 10; i++) {
        this.list.push(last + i)
      }
      this.loading = false
    }, 2500)
  }
error  in ./src/views/index.vue


  ✘  http://eslint.org/docs/rules/func-call-spacing  Unexpected space between function name and paren
  /Users/wscart/Sites/node/toutiao/src/views/index.vue:92:5
      setTimeout (() => {
       ^


✘ 1 problem (1 error, 0 warnings)
PHP中文网PHP中文网2749 days ago594

reply all(2)I'll reply

  • PHPz

    PHPz2017-05-19 10:27:10

    There is a space between the name of your function setTimeout and the brackets.

    reply
    0
  • 仅有的幸福

    仅有的幸福2017-05-19 10:27:10

    1. setTimeout();

    2. Indentation problem

    3. Indentation problem

    reply
    0
  • Cancelreply