ember-tooling / ember-eslint-parser

This is the eslint parser for ember's gjs and gts files (using <template>).
4 stars 4 forks source link

parser is missing required serialization meta for use with FlatConfig #86

Closed runspired closed 2 months ago

runspired commented 5 months ago

the parser object should include a meta key with the name and version of the project.

I've worked around this for now by assigning one like so:

  const parser = Object.assign(
    {
      meta: {
        name: 'ember-eslint-parser',
        version: '*',
      },
    },
    emberEslintParser
  );
NullVoxPopuli commented 5 months ago

Would you be willing to PR a change to add meta?