biome-fix
This commit is contained in:
parent
ce4f8b7147
commit
ee16c920be
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"*.{js,ts,cjs,mjs,d.mts,jsx,tsx,json,jsonc}": [
|
"*.{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",
|
"package.json": "sort-package-json",
|
||||||
"public/locales/**/*.json": "sort-json"
|
"public/locales/**/*.json": "sort-json"
|
||||||
|
|
|
@ -1,11 +1,6 @@
|
||||||
{
|
{
|
||||||
"extends": [
|
"extends": ["stylelint-config-standard-scss"],
|
||||||
"stylelint-config-standard-scss"
|
"plugins": ["stylelint-order", "stylelint-scss"],
|
||||||
],
|
|
||||||
"plugins": [
|
|
||||||
"stylelint-order",
|
|
||||||
"stylelint-scss"
|
|
||||||
],
|
|
||||||
"rules": {
|
"rules": {
|
||||||
"keyframes-name-pattern": null,
|
"keyframes-name-pattern": null,
|
||||||
"declaration-block-no-redundant-longhand-properties": null,
|
"declaration-block-no-redundant-longhand-properties": null,
|
||||||
|
@ -15,13 +10,13 @@
|
||||||
"scss/no-global-function-names": null,
|
"scss/no-global-function-names": null,
|
||||||
"function-url-quotes": null,
|
"function-url-quotes": null,
|
||||||
"font-family-no-missing-generic-family-keyword": null,
|
"font-family-no-missing-generic-family-keyword": null,
|
||||||
"order/order": [
|
"order/order": ["custom-properties", "declarations"],
|
||||||
"custom-properties",
|
"scss/dollar-variable-pattern": [
|
||||||
"declarations"
|
"^[a-z][a-zA-Z]+$",
|
||||||
|
{
|
||||||
|
"ignore": "global"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"scss/dollar-variable-pattern": ["^[a-z][a-zA-Z]+$", {
|
|
||||||
"ignore": "global"
|
|
||||||
}],
|
|
||||||
"selector-pseudo-class-no-unknown": [
|
"selector-pseudo-class-no-unknown": [
|
||||||
true,
|
true,
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
|
"$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": {
|
"vcs": {
|
||||||
"defaultBranch": "dev",
|
"defaultBranch": "dev",
|
||||||
"useIgnoreFile": true
|
"useIgnoreFile": true
|
||||||
|
|
Loading…
Reference in New Issue
Block a user