2019-02-07 16:26:17 +08:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
browser: true,
|
|
|
|
node: true
|
|
|
|
},
|
|
|
|
parserOptions: {
|
2020-07-08 18:13:20 +08:00
|
|
|
parser: "babel-eslint"
|
2019-02-07 16:26:17 +08:00
|
|
|
},
|
2020-07-08 18:13:20 +08:00
|
|
|
extends: ["@nuxtjs"],
|
2019-02-07 16:26:17 +08:00
|
|
|
rules: {
|
2020-07-08 18:13:20 +08:00
|
|
|
"no-console": "off"
|
2020-07-10 12:04:37 +08:00
|
|
|
},
|
|
|
|
globals: {
|
|
|
|
"_": true
|
2019-02-07 16:26:17 +08:00
|
|
|
}
|
2020-07-08 18:13:20 +08:00
|
|
|
};
|