mirror of
https://github.com/grafana/grafana.git
synced 2025-08-06 09:49:26 +08:00
Prettier: Upgrade to 2 (#30387)
* Updated package json but not updated source files * Update eslint plugin * updated files
This commit is contained in:
@ -35,7 +35,7 @@ export const deepFreeze = <T>(obj: T): T => {
|
||||
|
||||
if (obj && obj instanceof Object) {
|
||||
const object: ObjectType = obj;
|
||||
Object.getOwnPropertyNames(object).forEach(propertyName => {
|
||||
Object.getOwnPropertyNames(object).forEach((propertyName) => {
|
||||
const objectProperty: any = object[propertyName];
|
||||
if (
|
||||
hasOwnProp.call(object, propertyName) &&
|
||||
|
Reference in New Issue
Block a user