Ghost/ghost/admin/.template-lintrc.js
2022-03-09 12:24:36 +00:00

10 lines
257 B
JavaScript

module.exports = {
extends: "recommended",
rules: {
'no-forbidden-elements': ['meta', 'html', 'script'],
'no-implicit-this': {allow: ['now', 'site-icon-style', 'accent-color-background']},
'no-inline-styles': false
}
};