Skip to content

Commit e8331b1

Browse files
authored
Fix: ignore PUG (fixes #165) (#180)
1 parent 827aaf9 commit e8331b1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
"dependencies": {
4646
"requireindex": "^1.1.0",
47-
"vue-eslint-parser": "^2.0.1-beta.0"
47+
"vue-eslint-parser": "^2.0.1-beta.1"
4848
},
4949
"devDependencies": {
5050
"@types/node": "^4.2.16",

tests/lib/rules/valid-template-root.js

+4
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ tester.run('valid-template-root', rule, {
7070
{
7171
filename: 'test.vue',
7272
code: '<template><table><custom-thead></custom-thead></table></template>'
73+
},
74+
{
75+
filename: 'test.vue',
76+
code: '<template lang="pug">test</template>'
7377
}
7478
],
7579
invalid: [

0 commit comments

Comments
 (0)