UNPKG

255 BJavaScriptView Raw
1module.exports = {
2 root: true,
3 plugins: ['prettier'],
4 extends: ['@webpack-contrib/eslint-config-webpack'],
5 rules: {
6 'prettier/prettier': [
7 'error',
8 { singleQuote: true, trailingComma: 'es5', arrowParens: 'always' },
9 ],
10 },
11};