1.7.0 • Published 3 days ago

@tsofist/web-buddy v1.7.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 days ago

Concept

This is a set of pre-configured configurations for quickly starting web projects of the JS family. You can simply clone this repository, make the necessary changes, and easily connect it to your projects.

Thus, all projects using this repository will have uniform settings for styling, building, and other things. Exceptions can always be localized in the package.json file of a specific project.

What's included?

  • ESLint TypeScript, JavaScript, Yaml, VueJS, JSON
  • Stylelint Vue, SCSS, PostCSS, HTML
  • Prettier
  • .editorconfig
  • TypeScript
  • Semantic release GitHub, Gitlab

How to use

As concept or sample

Your project may differ significantly from the configurations collected in this repository, so you can simply fork this project and make your own changes. Alternatively, you can use this repository as a sample for creating your own.

Directly

All specified configurations are easily extensible, so simply use the configuration extension, for example in package.json:

{
  "scripts": {
    "prepare": "husky && (cp node_modules/@tsofist/web-buddy/.editorconfig \"$INIT_CWD\" || true)"
  },
  "prettier": "./node_modules/@tsofist/web-buddy/.prettierrc.js",
  "stylelint": {
    "extends": "./node_modules/@tsofist/web-buddy/.stylelintrc.yaml"
  },
  "eslintConfig": {
    "root": true,
    "extends": "./node_modules/@tsofist/web-buddy/.eslintrc.yaml"
  },
  "release": {
    "extends": [
      "@tsofist/web-buddy/.releaserc.json"
    ]
  }
}