ember-cli / eslint-plugin-ember

An ESLint plugin that provides set of rules for Ember applications based on commonly known good practices.
MIT License
257 stars 198 forks source link

Lint against shadowed keywords #2133

Open NullVoxPopuli opened 2 months ago

NullVoxPopuli commented 2 months ago

for example, this should be a lint error:

import { modifier } from 'ember-modifier';
import { on } from '@ember/modifier';

<template>
  {{yield (modifier on)}}
</template>

modifier is a keyword, and different from the function from ember-modifier