Adding in CSS and HTML linting. Fixes 72

This commit is contained in:
Jonathan Kingston
2017-01-25 16:52:27 +00:00
parent 1e6b684915
commit 71001050b4
7 changed files with 231 additions and 105 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"extends": "stylelint-config-standard",
"ignoreFiles": ["webextension/css/*.min.css"],
"rules": {
"declaration-block-no-duplicate-properties": true,
"declaration-block-properties-order": "alphabetical",
"property-blacklist": [
"/height/",
"/width/",
"/top/",
"/bottom/",
"padding",
"margin"
]
}
}