GithubHelp home page GithubHelp logo

Comments (5)

tclindner avatar tclindner commented on September 2, 2024

Hey @moshest that isn't currently an option, but I think it is a great idea. I'll mark this issue as an enhancement and work on it as soon as I can!

from npm-package-json-lint.

tclindner avatar tclindner commented on September 2, 2024

Hey @moshest thank you for the suggestion. v2.8.0 has been released with a new rule named prefer-property-order. Here is a link to the documentation. Let me know what you think.

from npm-package-json-lint.

moshest avatar moshest commented on September 2, 2024

Great!

I think that providing a default order for this role can help many users:

[
    'name',
    'version',
    'description',
    'keywords',
    'homepage',
    'bugs',
    'license',
    'author',
    'contributors',
    'files',
    'main',
    'module',
    'jsnext:main',
    'types',
    'typings',
    'style',
    'example',
    'examplestyle',
    'assets',
    'bin',
    'man',
    'directories',
    'repository',
    'scripts',
    'config',
    'pre-commit',
    'browser',
    'browserify',
    'babel',
    'eslintConfig',
    'stylelint',
    'dependencies',
    'devDependencies',
    'peerDependencies',
    'bundledDependencies',
    'bundleDependencies',
    'optionalDependencies',
    'engines',
    'engineStrict',
    'os',
    'cpu',
    'preferGlobal',
    'private',
    'publishConfig',
]

(Copied from sort-package-json module)

We also need to check that entries that missing from the package.json file but exists on the order list would not reject as an error.

For example:

{
  "rules": {
    "prefer-property-order": ["error", [
      "name",
      "version",
      "description"
    ]]
  }
}

Valid package.json:

{
  "name": "npm-package-json-lint",
  "version": "1.0.0"
}

Invalid package.json:

{
  "version": "1.0.0",
  "name": "npm-package-json-lint"
}

from npm-package-json-lint.

tclindner avatar tclindner commented on September 2, 2024

Hi @moshest I've made these adjustments in v2.8.1. I updated the documentation too. Let me know what you think.

from npm-package-json-lint.

moshest avatar moshest commented on September 2, 2024

Great! 🎉

from npm-package-json-lint.

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.