Permalink
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up| module.exports = { | |
| root: true, | |
| parserOptions: { | |
| parser: require.resolve('babel-eslint'), | |
| ecmaVersion: 2018, | |
| sourceType: 'module' | |
| }, | |
| env: { | |
| es6: true, | |
| node: true, | |
| browser: true | |
| }, | |
| plugins: [ | |
| "flowtype" | |
| ], | |
| extends: [ | |
| "eslint:recommended", | |
| "plugin:flowtype/recommended" | |
| ], | |
| globals: { | |
| "__WEEX__": true, | |
| "WXEnvironment": true | |
| }, | |
| rules: { | |
| 'no-console': process.env.NODE_ENV !== 'production' ? 0 : 2, | |
| 'no-useless-escape': 0, | |
| 'no-empty': 0 | |
| } | |
| } |

