code-specification-unid
                                
                                 code-specification-unid copied to clipboard
                                
                                    code-specification-unid copied to clipboard
                            
                            
                            
                        đĨ Code specification unified dependency, support react/vue2/vue3/svelte3.
code-specification-unid
English | įŽäŊ䏿
Produced to solve the problem of inconsistent code specifications for multiple projects in the team.
It's a collection of unified configuration files including prettier, eslint, stylelint, husky, lint-staged, and commitlint support reactãvue2ãvue3 and svelte3.
- eslint helps you find js errors and improve the quality of js code
- stylelint helps you find css errors and improve the quality of css code
- Prettier helps you format the code, unify code format
- Husky and lint-staged run code inspections before submitting code to improve the quality of online code
- commitlint helps you unify the commit message format
Features
- đ All projects uniformly use an agreed code specification;
- đĻ Put a large number of third-party dependencies back to simplify business code;
- âī¸ On the basis of inheriting the unified specification, still provide customization capabilities;
- đ Support React, Vue2, Vue3 projects, and support file name verification;
Installation
npm install code-specification-unid --save-dev
Or
yarn add code-specification-unid -D
Note: Since
code-specification-unidhas already consolidated most of the code specification-related dependency packages that may be used, there is no need to reinstall the following dependencies. If they are already installed, please delete them by yourself (including the corresponding configuration file):
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-compat": "^3.1.1",
"eslint-plugin-eslint-comments": "^3.1.1",
"eslint-plugin-filename": "^1.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-svelte3": "^3.2.0",
"eslint-plugin-unicorn": "^20.0.0",
"eslint-plugin-vue": "^7.5.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.3.2",
"prettier-plugin-svelte": "^2.2.0",
"stylelint": "^13.7.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
"stylelint-no-unsupported-browser-features": "^4.1.4",
"stylelint-order": "^4.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.19.0"
Configuration
1. Create configuration files as below;
in .eslintrc.js
module.exports = {
  extends: [require.resolve('code-specification-unid/dist/eslintReact')],
  rules: {
    // your rules
  },
};
Note that for different projects, please import different eslint configuration packages
react corresponds to
eslintReactvue2 corresponds to
eslintVue2vue3 corresponds to
eslintVue3svelte corresponds to
eslintSvelte
in .stylelintrc.js
module.exports = {
  extends: [require.resolve('code-specification-unid/dist/stylelint')],
  rules: {
    // your rules
  },
};
in .prettierrc.js
const spec = require('code-specification-unid');
module.exports = {
    ...spec.prettier,
    // your rules
};
in .huskyrc.js
const spec = require('code-specification-unid');
module.exports = {
    ...spec.husky,
    // your rules
};
in .lintstagedrc.js
const spec = require('code-specification-unid');
module.exports = {
    ...spec.lintstaged,
    // your rules
};
in .commitlintrc.js
const spec = require('code-specification-unid');
module.exports = {
    ...spec.commitlint,
    // your rules
};
Note: The format types of submitted message are
'upd','feat','fix','refactor','docs','chore','style','revert', for example:feat: add support for i18n
File name verification (optional)
By default, file name verification does not require any configuration. The default rule is to support camelcase or pascalcase style file names.
It relies on the eslint-plugin-filename plugin to complete, and supports two forms of alias and custom regular.
The built-in aliases are pascalcase/PascalCase, camelcase/camelCase, snakecase/snake_case, kebabcase/kebab-case,
It also supports passing in multiple aliases in the form of an array.
E.g:
  rules: {
    'filename/match': [2, 'camelcase'],
  },
Or
  rules: {
    'filename/match': [2, ['camelcase','pascalcase']], //default configuration
  },
If the above built-in aliases cannot meet your needs, you can also customize regular expressions, for example:
'filename/match': [2, /^([a-z]+-)*[a-z]+(?:\..*)?$/],
You can even use different rules for different file types, for example:
'filename/match': [2, { '.js': 'camelCase', '.ts': /^([a-z]+-)*[a-z]+(?:\..*)?$/ }],
2. Call command
If it is a react project, add the following command to the script of your project package.json:
"lint": "npm run lint:js && npm run lint:css && npm run lint:format",
"lint:js": "eslint src --fix --ext .js,.jsx,.ts,.tsx --cache --cache-location node_modules/.cache/eslint/",
"lint:css": "stylelint --fix \"src/**/*.{less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:format": "prettier --write  \"src/**/*.{js,json,ts,tsx,css,less,scss,html,md}\"",
If it is a vue project, add the following command to the script of your project package.json:
"lint": "npm run lint:js && npm run lint:css && npm run lint:format",
"lint:js": "eslint src --fix --ext .js,.jsx,.ts,.tsx,.vue --cache --cache-location node_modules/.cache/eslint/",
"lint:css": "stylelint --fix \"src/**/*.{less,postcss,css,scss,vue}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:format": "prettier --write  \"src/**/*.{js,json,ts,tsx,vue,css,less,scss,html,md}\"",
If it is a svelte project, add the following command to the script of your project package.json:
"lint": "npm run lint:js && npm run lint:css && npm run lint:format",
"lint:js": "eslint src --fix --ext .js,.jsx,.ts,.tsx,.svelte --cache --cache-location node_modules/.cache/eslint/",
"lint:css": "stylelint --fix \"src/**/*.{less,postcss,css,scss,svelte}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:format": "prettier --write  \"src/**/*.{js,json,ts,tsx,svelte,css,less,scss,html,md}\"",
Usage example
For a complete usage example, please refer to this react-snowpack example
Changelog
1.0.13
- add supports for style order auto fixing
1.0.12
- fix stylelint some default rules
1.0.11
- add ESLint support for Typescript 3.8+ import typesyntax
1.0.9
- add stylelint-scss plugin
1.0.7
- add supports for svelte
1.0.5
- fix problem with filename validation expired when in vue project
1.0.3
- add eslint ignore pattern for .*.js
1.0.0
- Initial release
License
MIT