forked from vuejs/eslint-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathno-v-html.js
More file actions
93 lines (90 loc) · 2.12 KB
/
no-v-html.js
File metadata and controls
93 lines (90 loc) · 2.12 KB
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
/**
* @fileoverview Restrict or warn use of v-html to prevent XSS attack
* @author Nathan Zeplowitz
*/
'use strict'
const RuleTester = require('../../eslint-compat').RuleTester
const rule = require('../../../lib/rules/no-v-html')
const ruleTester = new RuleTester({
languageOptions: { parser: require('vue-eslint-parser'), ecmaVersion: 2015 }
})
ruleTester.run('no-v-html', rule, {
valid: [
{
filename: 'test.vue',
code: ''
},
{
filename: 'test.vue',
code: '<template></template>'
},
{
filename: 'test.vue',
code: '<template><div v-if="foo"></div></template>'
},
{
filename: 'test.vue',
code: '<template><div v-if="foo" v-bind="bar"></div></template>'
},
{
filename: 'test.vue',
code: '<template><div v-html="htmlKnownToBeSafe"></div></template>',
options: [{ ignorePattern: '^html' }]
}
],
invalid: [
{
filename: 'test.vue',
code: '<template><div v-html="foo"></div></template>',
errors: [
{
message: "'v-html' directive can lead to XSS attack.",
line: 1,
column: 16,
endLine: 1,
endColumn: 28
}
]
},
{
filename: 'test.vue',
code: '<template><ul v-html:aaa="userHTML"></ul></template>',
errors: [
{
message: "'v-html' directive can lead to XSS attack.",
line: 1,
column: 15,
endLine: 1,
endColumn: 36
}
]
},
{
filename: 'test.vue',
code: '<template><section v-html/></template>',
errors: [
{
message: "'v-html' directive can lead to XSS attack.",
line: 1,
column: 20,
endLine: 1,
endColumn: 26
}
]
},
{
filename: 'test.vue',
code: '<template><div v-html="unsafeString"></div></template>',
options: [{ ignorePattern: '^html' }],
errors: [
{
message: "'v-html' directive can lead to XSS attack.",
line: 1,
column: 16,
endLine: 1,
endColumn: 37
}
]
}
]
})