mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-23 11:55:01 +03:00
4ad99dadc4
no issue - rule: https://github.com/ember-template-lint/ember-template-lint/blob/master/docs/rule/no-forbidden-elements.md - we need to use `<stye>` in our application template to allow use of dynamic CSS variables - the whatwg html spec says `<style>` is not valid inside `<body>` but all of the browsers we care about support it
9 lines
165 B
JavaScript
9 lines
165 B
JavaScript
module.exports = {
|
|
extends: "recommended",
|
|
|
|
rules: {
|
|
"no-inline-styles": false,
|
|
"no-forbidden-elements": ['meta', 'html', 'script']
|
|
}
|
|
};
|