16 lines
273 B
JavaScript
16 lines
273 B
JavaScript
// eslint-disable-next-line no-warning-comments
|
|
// TODO wait for eslint/eslint#3458
|
|
|
|
module.exports = {
|
|
extends: [
|
|
'eslint:recommended',
|
|
'xo-space/esnext',
|
|
'react-app',
|
|
'prettier',
|
|
'prettier/react'
|
|
],
|
|
rules: {
|
|
'capitalized-comments': 0
|
|
}
|
|
};
|