ESLint禁止覆写原生对象和直接用子组件
问题描述
第一个呢就是直接用属性作为组件也会报错,看网友们有没有配置过这种禁用如此使用组件的rule,分享一下
第二个是no-global-assign
可以对Object = 3;
这类对原生对象赋值起作用,但是对于导入对象不起作用
Sonar检测报错提示:
Overriding an object changes its behavior and could potentially impact all code using that object. Overriding standard, built-in objects could therefore have broad, potentially catastrophic effects on previously-working code.This rule detects overrides of the following native objects:
Fundamental objects - Object, Function, Boolean, Symbol, Error, EvalError, InternalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError
Numbers and dates - Number, Math, Date
Text processing - String, RegExp
Indexed collections - Array, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Unit16Array, Int32Array, Uint32Array, Float32Array, Float64Array
Keyed collections - Map, Set, WeakMap, WeakSet
Structured data - ArrayBuffer, DataView, JSON
Control abstraction objects - Promise
Reflection - Reflect, Proxy
Internationalization - Intl
Non-standard objects - Generator, Iterator, ParallelArray, StopIteration
问题出现的环境背景及自己尝试过哪些方法
尝试了no-global-assign
无果,还在找其他rule,疯狂蹂躏搜索引擎中。。。
你期待的结果是什么?实际看到的错误信息又是什么?
通过配置ESLint让本地提示如此使用是Error
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论