Ghost/ghost/admin/.template-lintrc.js

10 lines
257 B
JavaScript
Raw Normal View History

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