marked-mfm/.eslintrc.cjs
Sol Fisher Romanoff 003d398450
Initial commit
2022-07-08 11:32:20 +03:00

14 lines
229 B
JavaScript

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