biome-fix
Some checks failed
deploy / Linting (push) Successful in 48s
deploy / Run end-to-end tests (push) Failing after 1m24s
deploy / Update templates on Mailgun (push) Has been skipped
deploy / Github (push) Failing after 2s

This commit is contained in:
Untone 2024-02-04 14:55:38 +03:00
parent ce4f8b7147
commit ee16c920be
3 changed files with 13 additions and 14 deletions

View File

@ -1,6 +1,6 @@
{
"*.{js,ts,cjs,mjs,d.mts,jsx,tsx,json,jsonc}": [
"biome lint src --no-errors-on-unmatched"
"biome lint . --no-errors-on-unmatched"
],
"package.json": "sort-package-json",
"public/locales/**/*.json": "sort-json"

View File

@ -1,11 +1,6 @@
{
"extends": [
"stylelint-config-standard-scss"
],
"plugins": [
"stylelint-order",
"stylelint-scss"
],
"extends": ["stylelint-config-standard-scss"],
"plugins": ["stylelint-order", "stylelint-scss"],
"rules": {
"keyframes-name-pattern": null,
"declaration-block-no-redundant-longhand-properties": null,
@ -15,13 +10,13 @@
"scss/no-global-function-names": null,
"function-url-quotes": null,
"font-family-no-missing-generic-family-keyword": null,
"order/order": [
"custom-properties",
"declarations"
"order/order": ["custom-properties", "declarations"],
"scss/dollar-variable-pattern": [
"^[a-z][a-zA-Z]+$",
{
"ignore": "global"
}
],
"scss/dollar-variable-pattern": ["^[a-z][a-zA-Z]+$", {
"ignore": "global"
}],
"selector-pseudo-class-no-unknown": [
true,
{

View File

@ -1,5 +1,9 @@
{
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"files": {
"include": ["*.tsx", "*.ts", "*.js", "*.json"],
"ignore": ["./dist", "./node_modules", ".husky", "docs", "gen", "public"]
},
"vcs": {
"defaultBranch": "dev",
"useIgnoreFile": true