You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
596 B
JavaScript
40 lines
596 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
|
|
"extends": [
|
|
|
|
"@futagoza/node/8",
|
|
// "@futagoza/typescript",
|
|
"@futagoza/vue",
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"no-duplicate-imports": [ "error", { "includeExports": false } ],
|
|
"no-eval": 0,
|
|
|
|
},
|
|
|
|
"overrides": [ {
|
|
|
|
"files": [
|
|
"test/unit/compiler/passes/helpers.js",
|
|
"*.spec.js",
|
|
"*.test.js"
|
|
],
|
|
"extends": "@futagoza/dev/test",
|
|
"rules": {
|
|
|
|
"func-names": 0,
|
|
"no-mixed-operators": 0,
|
|
|
|
},
|
|
|
|
} ],
|
|
|
|
"root": true,
|
|
|
|
};
|