mirror of
https://github.com/github/codeql-action.git
synced 2025-12-31 03:30:14 +08:00
9 lines
284 B
JavaScript
9 lines
284 B
JavaScript
module.exports = (context, badBrowser) => ({
|
|
ClassPrivateProperty(node) {
|
|
context.report(node, `Private Class Fields are not supported in ${badBrowser}`)
|
|
},
|
|
PrivateIdentifier(node) {
|
|
context.report(node, `Private Class Fields are not supported in ${badBrowser}`)
|
|
}
|
|
})
|