marked-mfm/.eslintrc.cjs

14 lines
229 B
JavaScript
Raw Normal View History

2022-07-08 08:32:20 +00:00
module.exports = {
root: true,
plugins: ['jest'],
extends: ['standard'],
rules: {
'comma-dangle': ['error', 'always-multiline'],
'arrow-parens': 0,
'no-tabs': 0,
},
env: {
'jest/globals': true,
},
}