Coder Social home page Coder Social logo

pug-lint-vue's People

Contributors

dependabot-preview[bot] avatar fpierre avatar lehni avatar pehbehbeh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

pug-lint-vue's Issues

Line numbers are wrong

Say I get this:

assets/vue/admin-bank-create.vue
  38:1  Invalid indentation
  49:1  Invalid indentation
  59:1  Invalid indentation

The problem is that all my templates are after the scripts, so in this file, the <template> tag is on line 262, and the first invalid indentation is in fact on line 299, not 38.

if template without lang="pug" have custom element will show error

I have a test.vue file have a custom element like this

<template>
  <div>
    <mycomponent></mycomponent>
  </div>
</template>
<script></script>
<style scoped></style>

it should skip pug-lint-vue

but it will got error

λ yarn pug-lint-vue pages/test.vue
yarn pug-lint-vue v0.21.3
$ "C:\Users\ausir\vts\node_modules\.bin\pug-lint-vue" pages/test.vue
C:\Users\ausir\vts\node_modules\domutils\lib\querying.js:89
                if(elems[i].children.length > 0){
                                    ^

TypeError: Cannot read property 'length' of undefined
    at findAll (C:\Users\ausir\vts\node_modules\domutils\lib\querying.js:89:23)
    at findAll (C:\Users\ausir\vts\node_modules\domutils\lib\querying.js:90:27)
    at Object.findAll (C:\Users\ausir\vts\node_modules\domutils\lib\querying.js:90:27)
    at selectAll (C:\Users\ausir\vts\node_modules\css-select\index.js:26:70)
    at select (C:\Users\ausir\vts\node_modules\css-select\index.js:21:10)
    at CSSselect (C:\Users\ausir\vts\node_modules\css-select\index.js:41:9)
    at initialize.exports.find (C:\Users\ausir\vts\node_modules\cheerio\lib\api\traversing.js:40:21)
    at initialize.module.exports (C:\Users\ausir\vts\node_modules\cheerio\lib\cheerio.js:86:18)
    at new initialize (C:\Users\ausir\vts\node_modules\cheerio\lib\static.js:29:20)
    at initialize (C:\Users\ausir\vts\node_modules\cheerio\lib\static.js:26:14)
error Command failed with exit code 1.

if I delete that custom element , pug-lint-vue work well .
but, sometimes I will import some vue component , that use html and custom element ....

how can I fix it ?

thanks.

Non-Sense Error

There is weird error

Image of Error

Error will gone where I change <label for="fullname">Name:</label> to <label for="fullname">Name</label> ( colons deleted ) or <label for="fullname">Name: </label> ( space added ) or even <label for="fullname">Name :</label>

It's too weird for me
I think it's a bug

Create webpack loader

Hi, thanks for making this tool! It would be very cool to have a webpack loader for *.vue files that would lint pug templates.

There's been an effort to make a loader like this: pug-lint-loader. However, it doesn't seem to work with *.vue files, only with plain *.pug/*.jade files.

Error on run

Hey there

The following command:

$ (master) pug-lint-vue src/components/LayoutFooter.vue 

Gives me:

/usr/lib/node_modules/pug-lint-vue/node_modules/domutils/lib/querying.js:89
                if(elems[i].children.length > 0){
                                    ^

TypeError: Cannot read property 'length' of undefined
    at Object.findAll (/usr/lib/node_modules/pug-lint-vue/node_modules/domutils/lib/querying.js:89:23)
    at selectAll (/usr/lib/node_modules/pug-lint-vue/node_modules/css-select/index.js:26:70)
    at select (/usr/lib/node_modules/pug-lint-vue/node_modules/css-select/index.js:21:10)
    at CSSselect (/usr/lib/node_modules/pug-lint-vue/node_modules/css-select/index.js:41:9)
    at initialize.exports.find (/usr/lib/node_modules/pug-lint-vue/node_modules/cheerio/lib/api/traversing.js:40:21)
    at initialize.module.exports (/usr/lib/node_modules/pug-lint-vue/node_modules/cheerio/lib/cheerio.js:86:18)
    at new initialize (/usr/lib/node_modules/pug-lint-vue/node_modules/cheerio/lib/static.js:29:20)
    at initialize (/usr/lib/node_modules/pug-lint-vue/node_modules/cheerio/lib/static.js:26:14)
    at DefaultHandler.htmlparser.DefaultHandler [as _callback] (/usr/lib/node_modules/pug-lint-vue/lib/linter.js:68:36)
    at DefaultHandler$handleCallback [as handleCallback] (/usr/lib/node_modules/pug-lint-vue/node_modules/htmlparser/lib/htmlparser.js:644:9)

It's looks like this other linter issue.

I will make a PR :)

Doesn't support v-bind (and possibly v-on) shorthand

This lints fine:

el-form.inline(
  v-bind:model='form'
  v-bind:rules='rules'
  v-bind:ref='formName'
  method='post'
  action=''
  label-position='top'
  status-icon
  v-on:submit.native.prevent='submitForm($event)'
  novalidate
)

This throws an 'Unexpected token' error at the line containing the ':rules' parameter (oddly enough, the previous line with the ':model' parameter is fine)

el-form.inline(
  :model='form'
  :rules='rules'
  :ref='formName'
  method='post'
  action=''
  label-position='top'
  status-icon
  @submit.native.prevent='submitForm($event)'
  novalidate
)

Is this an issue with pug-lint itself, or is it something you can affect with this package?

Cheers!

False positive about `validateAttributeSeperator` with attributes starting with `:` or `@`

I'm using v0.3.0.

About this template example,

<template>
b-textarea(
  rows='20'
  :value='body'
  :loading='isProcessing'
  @input='inputBody'
  required
)
</template>

and set this .pug-lintrc.js,

module.exports = {
  validateAttributeSeparator: {
    separator: ', ',
    multiLineSeparator: '\n'
  }
}

This case reports this:

  4:3    Invalid attribute separator found
  5:3    Invalid attribute separator found
  6:3    Invalid attribute separator found

It means that : and @ occurred Invalid attribute separator found errors.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.