UNPKG

222 BJavaScriptView Raw
1module.exports = {
2 root: true,
3 env: {
4 browser: true
5 },
6 extends: [
7 require.resolve('eslint-config-airbnb')
8 ],
9 plugins: ['flowtype'],
10 rules: {
11 'import/*': 0,
12 'react/require-extension': 0
13 }
14};