ci: replace eslint and prettier to biomejs and lefthook
This commit is contained in:
parent
8e6aa36dab
commit
65a6597a8e
27
biome.json
Normal file
27
biome.json
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
|
||||||
|
"vcs": {
|
||||||
|
"enabled": true,
|
||||||
|
"clientKind": "git",
|
||||||
|
"useIgnoreFile": true,
|
||||||
|
"defaultBranch": "main"
|
||||||
|
},
|
||||||
|
"organizeImports": {
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
"formatter": {
|
||||||
|
"enabled": true,
|
||||||
|
"formatWithErrors": false,
|
||||||
|
"attributePosition": "multiline",
|
||||||
|
"indentWidth": 2,
|
||||||
|
"indentStyle": "space",
|
||||||
|
"lineEnding": "lf",
|
||||||
|
"lineWidth": 80
|
||||||
|
},
|
||||||
|
"linter": {
|
||||||
|
"enabled": true,
|
||||||
|
"rules": {
|
||||||
|
"recommended": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
10
lefthook.yml
Normal file
10
lefthook.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
pre-commit:
|
||||||
|
commands:
|
||||||
|
biome_write:
|
||||||
|
glob: "*.{ts,tsx,json}"
|
||||||
|
run: yarn biome check --write --no-errors-on-unmatched --files-ignore-unknown=true {staged_files} && git update-index --again
|
||||||
|
pre-push:
|
||||||
|
commands:
|
||||||
|
biome_check:
|
||||||
|
glob: "*.{ts,tsx,json}"
|
||||||
|
run: yarn biome check --no-errors-on-unmatched --files-ignore-unknown=true {staged_files}
|
@ -10,6 +10,7 @@
|
|||||||
"components"
|
"components"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"postinstall": "lefthook install",
|
||||||
"react": "yarn workspace react",
|
"react": "yarn workspace react",
|
||||||
"cli": "yarn workspace @psw-ui/cli",
|
"cli": "yarn workspace @psw-ui/cli",
|
||||||
"react:build": "yarn workspace react build",
|
"react:build": "yarn workspace react build",
|
||||||
@ -17,5 +18,9 @@
|
|||||||
"cli:build": "yarn workspace @psw-ui/cli build"
|
"cli:build": "yarn workspace @psw-ui/cli build"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"packageManager": "yarn@4.2.2+sha512.c44e283c54e02de9d1da8687025b030078c1b9648d2895a65aab8e64225bfb7becba87e1809fc0b4b6778bbd47a1e2ab6ac647de4c5e383a53a7c17db6c3ff4b"
|
"packageManager": "yarn@4.2.2+sha512.c44e283c54e02de9d1da8687025b030078c1b9648d2895a65aab8e64225bfb7becba87e1809fc0b4b6778bbd47a1e2ab6ac647de4c5e383a53a7c17db6c3ff4b",
|
||||||
|
"devDependencies": {
|
||||||
|
"@biomejs/biome": "1.8.3",
|
||||||
|
"lefthook": "^1.6.18"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1 +0,0 @@
|
|||||||
/dist
|
|
@ -1,93 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": [
|
|
||||||
"eslint:recommended",
|
|
||||||
"plugin:@typescript-eslint/eslint-recommended",
|
|
||||||
"plugin:@typescript-eslint/recommended",
|
|
||||||
"xo-space",
|
|
||||||
"plugin:n/recommended",
|
|
||||||
"plugin:unicorn/recommended",
|
|
||||||
"plugin:import/recommended",
|
|
||||||
"plugin:import/typescript",
|
|
||||||
"plugin:perfectionist/recommended-natural",
|
|
||||||
"prettier"
|
|
||||||
],
|
|
||||||
"parser": "@typescript-eslint/parser",
|
|
||||||
"plugins": [
|
|
||||||
"@typescript-eslint",
|
|
||||||
"n",
|
|
||||||
"unicorn",
|
|
||||||
"import"
|
|
||||||
],
|
|
||||||
"rules": {
|
|
||||||
"capitalized-comments": 0,
|
|
||||||
"comma-dangle": ["error", "always-multiline"],
|
|
||||||
"default-case": 0,
|
|
||||||
"no-multi-spaces": 0,
|
|
||||||
"n/shebang": 0,
|
|
||||||
"curly": 0,
|
|
||||||
"quotes": ["error","single",{
|
|
||||||
"avoidEscape": true
|
|
||||||
}],
|
|
||||||
"semi": ["error","never"],
|
|
||||||
"unicorn/prevent-abbreviations": "off",
|
|
||||||
"unicorn/no-await-expression-member": "off",
|
|
||||||
"unicorn/no-null": "off",
|
|
||||||
"unicorn/prefer-module": "warn",
|
|
||||||
"logical-assignment-operators": "off",
|
|
||||||
"@typescript-eslint/no-unused-vars": [
|
|
||||||
"error",
|
|
||||||
{
|
|
||||||
"argsIgnorePattern": "^_"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"@typescript-eslint/no-useless-constructor": "error",
|
|
||||||
"@typescript-eslint/no-var-requires": "off",
|
|
||||||
"import/no-unresolved": "error",
|
|
||||||
"import/default": "off",
|
|
||||||
"import/no-named-as-default-member": "off",
|
|
||||||
"n/no-missing-import": "off",
|
|
||||||
"n/no-unsupported-features/es-syntax": "off",
|
|
||||||
"no-unused-expressions": "off",
|
|
||||||
"no-useless-constructor": "off",
|
|
||||||
"perfectionist/sort-classes": [
|
|
||||||
"error",
|
|
||||||
{
|
|
||||||
"groups": [
|
|
||||||
"index-signature",
|
|
||||||
"static-property",
|
|
||||||
"property",
|
|
||||||
"private-property",
|
|
||||||
"constructor",
|
|
||||||
"static-method",
|
|
||||||
"static-private-method",
|
|
||||||
["get-method", "set-method"],
|
|
||||||
"method",
|
|
||||||
"private-method",
|
|
||||||
"unknown"
|
|
||||||
],
|
|
||||||
"order": "asc",
|
|
||||||
"type": "alphabetical"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"valid-jsdoc": ["warn", {
|
|
||||||
"requireParamType": false,
|
|
||||||
"requireReturnType": false
|
|
||||||
}]
|
|
||||||
},
|
|
||||||
"settings": {
|
|
||||||
"import/parsers": {
|
|
||||||
"@typescript-eslint/parser": [
|
|
||||||
".ts", ".tsx"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"import/resolver": {
|
|
||||||
"typescript": {
|
|
||||||
"alwaysTryTypes": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"globals": {
|
|
||||||
"describe": true,
|
|
||||||
"it": true
|
|
||||||
}
|
|
||||||
}
|
|
@ -1 +0,0 @@
|
|||||||
"@oclif/prettier-config"
|
|
@ -21,24 +21,11 @@
|
|||||||
"zod": "^3.23.8"
|
"zod": "^3.23.8"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@oclif/prettier-config": "^0.2.1",
|
|
||||||
"@oclif/test": "^4",
|
"@oclif/test": "^4",
|
||||||
"@types/chai": "^4",
|
"@types/chai": "^4",
|
||||||
"@types/ink-divider": "^2.0.4",
|
"@types/ink-divider": "^2.0.4",
|
||||||
"@types/node": "^18",
|
"@types/node": "^18",
|
||||||
"@typescript-eslint/eslint-plugin": "^7.13.0",
|
|
||||||
"@typescript-eslint/parser": "^7.13.0",
|
|
||||||
"chai": "^4",
|
"chai": "^4",
|
||||||
"eslint": "^8",
|
|
||||||
"eslint-config-oclif": "^5",
|
|
||||||
"eslint-config-oclif-typescript": "^3",
|
|
||||||
"eslint-config-prettier": "^9",
|
|
||||||
"eslint-config-xo-space": "^0.35.0",
|
|
||||||
"eslint-import-resolver-typescript": "^3.6.1",
|
|
||||||
"eslint-plugin-import": "^2.29.1",
|
|
||||||
"eslint-plugin-n": "^17.9.0",
|
|
||||||
"eslint-plugin-perfectionist": "^2.11.0",
|
|
||||||
"eslint-plugin-unicorn": "^54.0.0",
|
|
||||||
"oclif": "^4",
|
"oclif": "^4",
|
||||||
"shx": "^0.3.3",
|
"shx": "^0.3.3",
|
||||||
"tailwind-scrollbar": "^3.1.0",
|
"tailwind-scrollbar": "^3.1.0",
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
root: true,
|
|
||||||
env: { browser: true, es2020: true },
|
|
||||||
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react-hooks/recommended', 'plugin:storybook/recommended'],
|
|
||||||
ignorePatterns: ['dist', '.eslintrc.cjs'],
|
|
||||||
parser: '@typescript-eslint/parser',
|
|
||||||
plugins: ['react-refresh'],
|
|
||||||
rules: {
|
|
||||||
'react-refresh/only-export-components': [
|
|
||||||
'warn',
|
|
||||||
{ allowConstantExport: true },
|
|
||||||
],
|
|
||||||
'@typescript-eslint/no-unused-vars': [
|
|
||||||
"error",
|
|
||||||
{ varsIgnorePattern: '^_' }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
}
|
|
@ -18,14 +18,8 @@
|
|||||||
"@types/node": "^20.12.13",
|
"@types/node": "^20.12.13",
|
||||||
"@types/react": "^18.2.66",
|
"@types/react": "^18.2.66",
|
||||||
"@types/react-dom": "^18.2.22",
|
"@types/react-dom": "^18.2.22",
|
||||||
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
||||||
"@typescript-eslint/parser": "^7.2.0",
|
|
||||||
"@vitejs/plugin-react": "^4.2.1",
|
"@vitejs/plugin-react": "^4.2.1",
|
||||||
"autoprefixer": "^10.4.19",
|
"autoprefixer": "^10.4.19",
|
||||||
"eslint": "^8.57.0",
|
|
||||||
"eslint-plugin-react-hooks": "^4.6.0",
|
|
||||||
"eslint-plugin-react-refresh": "^0.4.6",
|
|
||||||
"eslint-plugin-storybook": "^0.8.0",
|
|
||||||
"postcss": "^8.4.38",
|
"postcss": "^8.4.38",
|
||||||
"tailwindcss": "^3.4.3",
|
"tailwindcss": "^3.4.3",
|
||||||
"typescript": "^5.4.5",
|
"typescript": "^5.4.5",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user