mirror of
https://github.com/github/codeql-action.git
synced 2026-01-02 12:40:21 +08:00
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
'use strict';
|
|
|
|
module.exports = (context, badBrowser) => ({
|
|
StaticBlock(node) {
|
|
context.report(
|
|
node,
|
|
`Class Static Blocks are not supported in ${badBrowser}`
|
|
);
|
|
},
|
|
});
|