We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
meta
1 parent 55ad336 commit 4d57146Copy full SHA for 4d57146
src/index.ts
@@ -1,6 +1,10 @@
1
import { readdirSync } from 'fs';
2
import { join, parse } from 'path';
3
import type { TSESLint } from '@typescript-eslint/utils';
4
+import {
5
+ name as packageName,
6
+ version as packageVersion,
7
+} from '../package.json';
8
import globals from './globals.json';
9
import * as snapshotProcessor from './processors/snapshot-processor';
10
@@ -56,6 +60,7 @@ const createConfig = (rules: Record<string, TSESLint.Linter.RuleLevel>) => ({
56
60
});
57
61
58
62
export = {
63
+ meta: { name: packageName, version: packageVersion },
59
64
configs: {
65
all: createConfig(allRules),
66
recommended: createConfig(recommendedRules),
0 commit comments