e534a911f3
Prettier v2 has the following breaking changes: * enforces spaces between `function` and params * enforces trailing commas by default
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
module.exports = {
|
|
rules: {
|
|
'no-process-env': 'off',
|
|
'prefer-const': 'warn',
|
|
'compat/compat': 'off',
|
|
'dot-notation': ['error', { allowKeywords: true }],
|
|
},
|
|
};
|