13 lines
516 B
JavaScript
13 lines
516 B
JavaScript
'use strict';
|
|
|
|
module.exports = (context, badBrowser) => ({
|
|
// Ignore type annotations that don't assign
|
|
'ClassProperty[static=false]:not([typeAnnotation]:not([value]))'(node) {
|
|
if (node.value === null) return
|
|
context.report(node, `Instance Class Fields are not supported in ${badBrowser}`)
|
|
},
|
|
'PropertyDefinition[static=false]:not([typeAnnotation]:not([value]))'(node) {
|
|
if (node.value === null) return
|
|
context.report(node, `Instance Class Fields are not supported in ${badBrowser}`)
|
|
}
|
|
})
|