You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
prettierRecommendedConfig,// Enables eslint-plugin-prettier, eslint-config-prettier and prettier/prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration.
'unicorn/prefer-keyboard-event-key': 'off',// 'key' doesn't exist in the used ES version
53
+
'unicorn/prefer-module': 'off',// We don't want to change a working configuration
54
+
'unicorn/prefer-string-replace-all': 'off',// String#replaceAll() doesn't exist in the used ES version
55
+
'unicorn/no-new-array': 'off',// In contradiction with unicorn/new-for-builtins: Use `new Array()` instead of `Array()`
56
+
'unicorn/no-null': 'off',// We don't know the impact on mxGraph code
57
+
'unicorn/no-useless-undefined': 'off',// The "undefined" value is useful where we use it and change some mxGraph code
58
+
'unicorn/prefer-global-this': 'off',// We only target the browser, so it is valid to use the window object. In addition, using 'globalThis' require additional changes in the code/configuration to work.
59
+
},
60
+
// Actually, the new feature to ignore folders in conf file or in commande line, seems to not work after several tests.
'unicorn/prefer-keyboard-event-key': 'off',// 'key' doesn't exist in the used ES version
69
-
'unicorn/prefer-module': 'off',// We don't want to change a working configuration
70
-
'unicorn/prefer-string-replace-all': 'off',// String#replaceAll() doesn't exist in the used ES version
71
-
'unicorn/no-new-array': 'off',// In contradiction with unicorn/new-for-builtins: Use `new Array()` instead of `Array()`
72
-
'unicorn/no-null': 'off',// We don't know the impact on mxGraph code
73
-
'unicorn/no-useless-undefined': 'off',// The "undefined" value is useful where we use it and change some mxGraph code
74
-
'unicorn/prefer-global-this': 'off',// We only target the browser, so it is valid to use the window object. In addition, using 'globalThis' require additional changes in the code/configuration to work.
0 commit comments