Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
"use strict"
|
|
|
|
const { commonGlobals, commonRules } = require("./_commons")
|
|
|
|
module.exports = {
|
|
globals: {
|
|
...commonGlobals,
|
|
__dirname: "readonly",
|
|
__filename: "readonly",
|
|
exports: "writable",
|
|
module: "readonly",
|
|
require: "readonly",
|
|
},
|
|
parserOptions: {
|
|
ecmaFeatures: { globalReturn: true },
|
|
ecmaVersion: 2019,
|
|
sourceType: "script",
|
|
},
|
|
plugins: ["node"],
|
|
rules: {
|
|
...commonRules,
|
|
"node/no-unsupported-features/es-syntax": ["error", { ignores: [] }],
|
|
},
|
|
}
|