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.
21 lines
431 B
21 lines
431 B
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, |
|
}, |
|
], |
|
}, |
|
}
|
|
|