[ACS-4792] provide support for style linting (#3055)

* [ACS-4792] provide support for style linting

* style fixes

* style fixes

* style fixes

* disable yarn licenses until the issue is fixed

* fix package lock

* fix after rebase
This commit is contained in:
Denys Vuika
2023-03-14 04:16:36 -04:00
committed by GitHub
parent c996d7d7d1
commit b939d1c582
39 changed files with 970 additions and 256 deletions

View File

@@ -2,10 +2,10 @@
"recommendations": [
"angular.ng-template",
"streetsidesoftware.code-spell-checker",
"ms-azuretools.vscode-docker",
"editorconfig.editorconfig",
"davidanson.vscode-markdownlint",
"esbenp.prettier-vscode",
"eamodio.gitlens"
"eamodio.gitlens",
"stylelint.vscode-stylelint"
]
}

View File

@@ -9,5 +9,12 @@
},
"markdownlint.config": {
"MD033": false
}
},
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"stylelint.validate": [
"css",
"scss"
]
}