Added Stylelint support

This commit is contained in:
Dustin Brett
2021-01-02 23:37:15 -08:00
parent d24a099d12
commit 172eb544f7
3 changed files with 1674 additions and 4 deletions

3
.stylelintrc.json Normal file
View File

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

1672
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -7,6 +7,7 @@
"build": "next build",
"start": "next start",
"eslint": "eslint .",
"stylelint": "stylelint **/*.scss",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
@@ -33,6 +34,8 @@
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.1.3"
}
}