You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
431 B
22 lines
431 B
2 years ago
|
module.exports = {
|
||
|
parser: 'babel-eslint',
|
||
|
extends: ['airbnb', 'prettier', 'plugin:jest/recommended'],
|
||
|
plugins: ['prettier', 'jest'],
|
||
|
env: {
|
||
|
'jest/globals': true,
|
||
|
},
|
||
|
rules: {
|
||
|
'prettier/prettier': [
|
||
|
'warn',
|
||
|
{
|
||
|
printWidth: 100,
|
||
|
tabWidth: 2,
|
||
|
bracketSpacing: true,
|
||
|
trailingComma: 'es5',
|
||
|
singleQuote: true,
|
||
|
jsxBracketSameLine: false,
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
}
|