fix(styles): remove useless import fonts file +edit config stylelint
This commit is contained in:
parent
f2f8f9cf76
commit
6a754b4e4a
11
.stylelintrc
Normal file
11
.stylelintrc
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"plugins": [
|
||||
"stylelint-scss"
|
||||
],
|
||||
"extends": [
|
||||
"stylelint-config-standard-scss",
|
||||
"stylelint-config-prettier-scss"
|
||||
], "rules": {
|
||||
"property-no-vendor-prefix": null
|
||||
}
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
{
|
||||
"extends": [
|
||||
"stylelint-config-standard-scss",
|
||||
"stylelint-config-prettier-scss"
|
||||
],
|
||||
"rules": {
|
||||
"color-no-invalid-hex": true,
|
||||
"property-no-vendor-prefix": null,
|
||||
"comment-no-empty": null,
|
||||
"comment-empty-line-before": "never",
|
||||
"no-descending-specificity": null,
|
||||
"custom-property-pattern": ["", {}]
|
||||
}
|
||||
}
|
@ -1,7 +1,6 @@
|
||||
import type { AppProps } from "next/app";
|
||||
|
||||
import "../styles/main.scss";
|
||||
import "../styles/fonts.scss";
|
||||
|
||||
const MyApp = ({ Component, pageProps }: AppProps) => {
|
||||
return <Component {...pageProps} />;
|
||||
|
Loading…
Reference in New Issue
Block a user