eslint-plugin-project-structure
Version:
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 pr
35 lines (34 loc) • 587 B
JavaScript
// src/parser.ts
var parser = {
meta: { name: "projectStructureParser" },
parseForESLint: () => ({
ast: {
type: "Program",
start: 0,
end: 0,
loc: {
start: {
line: 0,
column: 0
},
end: {
line: 0,
column: 0
}
},
tokens: [],
comments: [],
range: [0, 0],
sourceType: "module",
body: []
},
scopeManager: null,
visitorKeys: null
})
};
var parser_default = parser;
module.exports = parser;
export {
parser_default as default,
parser
};