StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
909 B
34 lines
909 B
/**
|
|
* @fileoverview Restrict or warn use of v-html to prevent XSS attack
|
|
* @author Nathan Zeplowitz
|
|
*/
|
|
'use strict'
|
|
const utils = require('../utils')
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
// ------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
type: 'suggestion',
|
|
docs: {
|
|
description: 'disallow use of v-html to prevent XSS attack',
|
|
category: 'recommended',
|
|
url: 'https://eslint.vuejs.org/rules/no-v-html.html'
|
|
},
|
|
fixable: null,
|
|
schema: []
|
|
},
|
|
create (context) {
|
|
return utils.defineTemplateBodyVisitor(context, {
|
|
"VAttribute[directive=true][key.name.name='html']" (node) {
|
|
context.report({
|
|
node,
|
|
loc: node.loc,
|
|
message: "'v-html' directive can lead to XSS attack."
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|