智能客服
你问我答,随时在线为你解决问题
不允许使用指定的(即用户在规则中定义的)语法。
// code-linter.json5
{
"rules": {
"@typescript-eslint/no-restricted-syntax": [
"error",
{
"selector": "FunctionExpression",
"message": "Function expressions are not allowed."
},
{
"selector": "CallExpression[callee.name='setTimeout'][arguments.length!=2]",
"message": "setTimeout must always be invoked with two arguments."
}
]
}
} /* eslint no-restricted-syntax: ["error", "ClassDeclaration"] */
export function doSomething() {
console.info('doSomething');
} /* eslint no-restricted-syntax: ["error", "ClassDeclaration"] */
export class CC {
public name: string;
public constructor(name: string) {
this.name = name;
}
}