forked from vuejs/eslint-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathno-duplicate-attr-inheritance.js
104 lines (97 loc) · 2.41 KB
/
no-duplicate-attr-inheritance.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/**
* @fileoverview Disable inheritAttrs when using v-bind="$attrs"
* @author Hiroki Osame
*/
'use strict'
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
var rule = require('../../../lib/rules/no-duplicate-attr-inheritance')
var RuleTester = require('eslint').RuleTester
// ------------------------------------------------------------------------------
// Tests
// ------------------------------------------------------------------------------
var ruleTester = new RuleTester({
parser: 'vue-eslint-parser',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
}
})
ruleTester.run('no-duplicate-attr-inheritance', rule, {
valid: [
{
filename: 'test.vue',
code: '<template><div><div></div></div></template>'
},
{
filename: 'test.vue',
code: `
<template><div><div></div></div></template>
<script>
export default { inheritAttrs: true }
</script>
`
},
{
filename: 'test.vue',
code: `
<template><div><div></div></div></template>
<script>
const data = {};
export default {
...data,
inheritAttrs: true
}
</script>
`
},
{
filename: 'test.vue',
code: `
<template><div><div></div></div></template>
<script>
const inheritAttrs = false;
export default { inheritAttrs }
</script>
`
},
{
filename: 'test.vue',
code: `
<template><div><div v-bind="$attrs"></div></div></template>
<script>
export default { inheritAttrs: false }
</script>
`
},
{
filename: 'test.vue',
code: `
<template><div><div v-bind="$attrs"></div></div></template>
<script>
export default { inheritAttrs: 0 }
</script>
`
}
],
invalid: [
{
filename: 'test.vue',
code: '<template><div><div v-bind="$attrs"></div></div></template>',
errors: ['Set "inheritAttrs" to false.']
},
{
filename: 'test.vue',
code: `
<template><div><div v-bind="$attrs"></div></div></template>
<script>
export default {
inheritAttrs: true
}
</script>
`,
errors: ['Set "inheritAttrs" to false.']
}
]
})