microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
4199f83575db84feb69e28f57d78c400aec1eab4

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

packages/eslint-plugin-typespec/src/index.ts

13lines · modecode

1import { callDecoratorRule } from "./rules/call-decorator.js";
2
3export const rules: Record<string, unknown> = {
4 "call-decorator": callDecoratorRule,
5};
6
7export const configs = {
8 recommended: {
9 rules: {
10 "@typespec/call-decorator": "warn",
11 },
12 },
13};
14