forked from mysticatea/eslint-plugin-eslint-comments
-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60c28f9
commit e05e75f
Showing
7 changed files
with
97 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
/** DON'T EDIT THIS FILE WHICH WAS CREATED BY 'scripts/generate-index.js'. */ | ||
"use strict" | ||
|
||
const rules = require("./lib/rules") | ||
const utils = require("./lib/utils") | ||
const configs = require("./lib/configs") | ||
|
||
module.exports = { | ||
configs: require("./lib/configs"), | ||
rules: require("./lib/rules"), | ||
utils: require("./lib/utils"), | ||
configs, | ||
rules, | ||
utils, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"compilerOptions": { | ||
"allowSyntheticDefaultImports": false, | ||
"esModuleInterop": false, | ||
"exactOptionalPropertyTypes": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"isolatedModules": true, | ||
"lib": ["ESNext"], | ||
"module": "NodeNext", | ||
"moduleResolution": "NodeNext", | ||
"noEmit": true, | ||
"resolveJsonModule": true, | ||
"skipLibCheck": false, | ||
"strict": true, | ||
"target": "ESNext", | ||
"useDefineForClassFields": true, | ||
"useUnknownInCatchVariables": true, | ||
"verbatimModuleSyntax": true | ||
}, | ||
"include": ["."] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import type { Linter } from "eslint" | ||
|
||
declare namespace Configs { | ||
import defaultExports = Configs | ||
|
||
export const recommended: Linter.Config | ||
|
||
export { defaultExports as default } | ||
} | ||
|
||
export = Configs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import type { ESLint, Linter } from "eslint" | ||
|
||
export declare const configs: { recommended: Linter.Config } | ||
|
||
export declare const rules: NonNullable<ESLint.Plugin["rules"]> | ||
|
||
export declare const utils: { patch: (ruleId?: string) => void } |