GithubHelp home page GithubHelp logo

Comments (5)

bradzacher avatar bradzacher commented on June 3, 2024 1

I think an existing rule should be able to be written as something like

export default Object.assign(
  {},
  renamedRule,
  {
    name: "old-name",
    meta: Object.assign(
      {},
      renamedRule.meta,
      {
        deprecated: true,
        replacedBy: ['new-rule-name'],
      },
    ),
  },
);

and everything should work as expected then. It'll cause syntactic conflicts with anyone trying to modify the old file and it'll ensure we only have one copy of the file in the codebase.

from typescript-eslint.

bradzacher avatar bradzacher commented on June 3, 2024 1

on small fix that replacedBy should be replacedBy: [renamedRule.name]
could make this a util for future renaming efforts.

from typescript-eslint.

kirkwaiblinger avatar kirkwaiblinger commented on June 3, 2024

@bradzacher
Nice! That basically worked perfectly. (Only trivial change was the doc link)

import noUselessTemplateExpression from './no-useless-template-expression';

export default {
  ...noUselessTemplateExpression,
  ...{
    name: 'no-useless-template-literals',
    meta: {
      ...noUselessTemplateExpression.meta,
      ...{
        deprecated: true,
        replacedBy: ['no-useless-template-expression'],
      },
      docs: {
        ...noUselessTemplateExpression.meta.docs,
        url: 'https://typescript-eslint.io/rules/no-useless-template-literals',
      },
    },
  },
};

The only thing this doesn't address, then, is the copypasta of the tests.... But maybe that's not so important as long as the rule is written in this way? What do you think?

from typescript-eslint.

kirkwaiblinger avatar kirkwaiblinger commented on June 3, 2024

I like that!

fun fact - our rules don't actually have the name property right now 😮 (at runtime or in the types; it gets used in the url creation then immediately dropped). Will take some slightly tedious tweaking of RuleCreator types to get this working.

from typescript-eslint.

bradzacher avatar bradzacher commented on June 3, 2024

Oh I thought that we started persisting the name for our doc gen infra.

from typescript-eslint.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.