Files
payload/examples/auth/cms/eslint-config/rules/style.js
2023-02-15 18:49:08 -05:00

14 lines
380 B
JavaScript

module.exports = {
rules: {
'prefer-named-exports': 'off',
'prefer-destructuring': 'off',
'comma-dangle': ['error', 'always-multiline'],
'class-methods-use-this': 'off',
'function-paren-newline': ['error', 'consistent'],
'eol-last': ['error', 'always'],
'no-restricted-syntax': 'off',
'no-await-in-loop': 'off',
'no-console': 'error',
},
}