14 lines
229 B
JavaScript
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,
|
||
|
},
|
||
|
}
|