set up stylelint in my vscode

This commit is contained in:
SeaswimmerTheFsh 2024-02-15 12:43:01 -05:00
parent 094434bf57
commit 59d56f388e
Signed by: Seaswimmer
GPG key ID: B8953EC01E5C4063
4 changed files with 1881 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/node_modules/

1
.stylelintrc.json Normal file
View file

@ -0,0 +1 @@
{ "extends": ["stylelint-config-standard"] }

1860
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

19
package.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "vencordthemes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://www.coastalcommits.com/SeaswimmerTheFsh/VencordThemes"
},
"author": "SeaswimmerTheFsh",
"license": "ISC",
"devDependencies": {
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0"
}
}