From a75959f5932d42f92956fba5603f6d2a1e2c9ff3 Mon Sep 17 00:00:00 2001 From: Igor Kowalski Date: Sat, 26 Oct 2024 17:05:46 +0200 Subject: [PATCH] 3.9.2 --- package.json | 2 +- src/parser.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index b86cf8b..4680920 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "author": "Igor Kowalski (Igorkowalski94)", "name": "eslint-plugin-project-structure", - "version": "3.9.1", + "version": "3.9.2", "license": "MIT", "description": "Powerful ESLint plugin with rules to help you achieve a scalable, consistent, and well-structured project. Create your own framework! Define your folder structure, file composition, advanced naming conventions, and create independent modules. Take your project to the next level and save time by automating the review of key principles of a healthy project! react folder structure react file structure react project structure react conventions architecture react next.js angular node solid vue svelte", "keywords": [ diff --git a/src/parser.ts b/src/parser.ts index ff2f13b..006e66f 100644 --- a/src/parser.ts +++ b/src/parser.ts @@ -25,10 +25,12 @@ interface ParserReturn { } interface ParserProps { + meta: { name: string }; parseForESLint: () => ParserReturn; } export const parser: ParserProps = { + meta: { name: "projectStructureParser" }, parseForESLint: () => ({ ast: { type: "Program",