mirror of
https://github.com/v2rayA/v2rayA.git
synced 2024-11-25 16:34:19 +08:00
23 lines
291 B
JavaScript
23 lines
291 B
JavaScript
module.exports = {
|
|
root: true,
|
|
|
|
env: {
|
|
node: true,
|
|
},
|
|
|
|
rules: {
|
|
"no-console": "off",
|
|
"no-debugger": "off",
|
|
},
|
|
|
|
parserOptions: {
|
|
parser: "@babel/eslint-parser",
|
|
},
|
|
|
|
extends: ["plugin:vue/recommended", "@vue/prettier"],
|
|
|
|
globals: {
|
|
apiRoot: true,
|
|
},
|
|
};
|