/* * Created Date: 2019-07-14 * Author: 宋慧武 * ------ * Last Modified: Sunday 2019-07-14 01:12:41 am * Modified By: the developer formerly known as 宋慧武 at * ------ * HISTORY: * ------ * Javascript will save your soul! */ module.exports = { root: true, env: { node: true }, extends: "react-app", plugins: ["prettier"], rules: { "prettier/prettier": "error", "no-console": process.env.NODE_ENV === "production" ? "error" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off", "exclude": /(dist)/ }, parserOptions: { parser: "babel-eslint" } };