feat(tools): Aggiunto StyleLint
This commit is contained in:
parent
48b2109d03
commit
dc906367aa
|
@ -128,5 +128,6 @@
|
|||
</list>
|
||||
</option>
|
||||
</inspection_tool>
|
||||
<inspection_tool class="Stylelint" enabled="true" level="ERROR" enabled_by_default="true" />
|
||||
</profile>
|
||||
</component>
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="StylelintConfiguration" allowJS="true" />
|
||||
</project>
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"extends": [
|
||||
"stylelint-config-standard",
|
||||
"stylelint-config-recommended-scss",
|
||||
"stylelint-config-idiomatic-order"
|
||||
],
|
||||
"rules": {
|
||||
"indentation": 4,
|
||||
"selector-type-no-unknown": null,
|
||||
"no-eol-whitespace": null
|
||||
}
|
||||
}
|
|
@ -16,6 +16,13 @@
|
|||
"eslint": "^7",
|
||||
"eslint-config-airbnb-base": "^14",
|
||||
"eslint-plugin-import": "^2",
|
||||
"laravel-mix": "^6"
|
||||
"laravel-mix": "^6",
|
||||
"sass": "^1",
|
||||
"sass-loader": "^12",
|
||||
"stylelint": "^13",
|
||||
"stylelint-config-idiomatic-order": "^8",
|
||||
"stylelint-config-recommended-scss": "^4",
|
||||
"stylelint-config-standard": "^22",
|
||||
"stylelint-scss": "^3"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue