1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-15 15:50:06 +02:00
copilot/packages/eslint-config/index.js

16 lines
273 B
JavaScript
Raw Normal View History

// eslint-disable-next-line no-warning-comments
// TODO wait for eslint/eslint#3458
module.exports = {
2017-07-05 16:33:16 +03:00
extends: [
'eslint:recommended',
'xo-space/esnext',
'react-app',
'prettier',
'prettier/react'
],
rules: {
'capitalized-comments': 0
}
};