Code Monkey home page Code Monkey logo

Comments (2)

antonio06 avatar antonio06 commented on June 15, 2024

from eslint-generator.

crsanti avatar crsanti commented on June 15, 2024

One thing to note here is to track the current status of every rule. Cases to consider:

  • I configure some rules, then I import a file. Should the dirty rules override the imported ones or the other way around? Maybe a dialog with "You have changed some rules. Do you want them to be applied in the imported configuration?"

  • There are two ways to write a rule. The old one uses an array format. E.g:

    "max-line-length": [true, 120]
    "max-line-length": [true, { "limit": 120 }]
    "max-line-length": [true, { "limit": 120, "ignorePattern": "^(im|ex)port (.*)" }]
    

    The standard format conforms an object with severity? and options?. E.g:

    "max-line-length": {
      "options": { "limit": 120 }
    }
    "max-line-length": { 
      "options" { "limit": 120, "ignorePattern": "^(im|ex)port (.*)" }
    }
    "max-line-length": { 
      "options" { "limit": 120 },
      "severity": "warning"
    }
    "max-line-length": { 
      "options" { "limit": 120, "ignorePattern": "^(im|ex)port (.*)" },
      "severity": "warning"
    }
    

    The question is, should the object format override the array format? Maybe another dialog asking to rewrite the old rules using the object format?
    Maybe every rule could have a status like pristine | imported | dirty where pristine rules won't be added, imported rules won't be touched and dirty rules will be written using the standart format (touching an imported rule and reverted back to its imported value would yield imported status instead of dirty)

What do you think?

from eslint-generator.

Related Issues (5)

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.