18 lines
482 B
JavaScript
18 lines
482 B
JavaScript
|
const eslintConfigPrettier = require('eslint-config-prettier');
|
||
|
const eslintPluginPrettier = require('./eslint-plugin-prettier');
|
||
|
|
||
|
// Merge the contents of eslint-config-prettier into every
|
||
|
module.exports = {
|
||
|
...eslintConfigPrettier,
|
||
|
plugins: {
|
||
|
...eslintConfigPrettier.plugins,
|
||
|
prettier: eslintPluginPrettier,
|
||
|
},
|
||
|
rules: {
|
||
|
...eslintConfigPrettier.rules,
|
||
|
'prettier/prettier': 'error',
|
||
|
'arrow-body-style': 'off',
|
||
|
'prefer-arrow-callback': 'off',
|
||
|
},
|
||
|
};
|