UNPKG

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