f6ff3bf52b
This is needed in order to use `globalThis`, see #1894. It also made it possible to remove some old polyfills and fallbacks.
9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
module.exports = {
|
|
rules: {
|
|
'no-process-env': 'off',
|
|
'prefer-const': 'warn',
|
|
'compat/compat': 'off',
|
|
'dot-notation': ['error', { allowKeywords: true }]
|
|
}
|
|
};
|