UNPKG

395 BJavaScriptView Raw
1module.exports = {
2 extends: ['standard', 'eslint-config-prettier'],
3 plugins: ['eslint-plugin-prettier'],
4 rules: {
5 'prettier/prettier': 'error',
6
7 // disable standard style-based rules, that's prettiers job
8 'standard/computed-property-even-spacing': 'off',
9 'node/no-deprecated-api': 'off',
10 'standard/no-callback-literal': 'off',
11 'handle-callback-err': 'off',
12 },
13};