UNPKG

505 BJavaScriptView Raw
1module.exports = {
2 extends: [
3 'airbnb',
4 'plugin:flowtype/recommended',
5 ],
6 parser: 'babel-eslint',
7 plugins: [
8 'flowtype',
9 ],
10 rules: {
11 'no-confusing-arrow': 0,
12 'no-mixed-operators': 0,
13 'arrow-parens': 0,
14 'import/prefer-default-export': 0,
15 'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx'] }],
16 'react/prop-types': 0,
17 },
18 globals: {
19 __CLIENT__: false,
20 __SERVER__: false,
21 __DEVELOPMENT__: false,
22 __PRODUCTION__: false,
23 },
24};