nuxt / create-nuxt-app

Create Nuxt.js App in seconds.
MIT License
3.48k stars 429 forks source link

feat: add lintfix and prettier scripts #829

Closed scscgit closed 2 years ago

scscgit commented 3 years ago
scscgit commented 3 years ago

I'd also suggest removing the .prettierrc and instead moving its content to package.json (as supported by cosmiconfig) in order to reduce the unnecessary amount of files in the root directory. Most users won't ever touch the defaults, and there doesn't seem to be any advantage in a separate file anyway (e.g. having JS available):

"prettier": {
    "semi": false,
    "singleQuote": true
  },
scscgit commented 3 years ago

Reordered prettier to the beginning of lintfix to fix #827.