85cce39af7
refs https://github.com/TryGhost/Team/issues/1734 refs https://github.com/TryGhost/Team/issues/559 refs https://github.com/TryGhost/Ghost/issues/14101 - switches to newer modal patterns ready for later Ember upgrades - cleaned up the `upload-image` modal which had multiple areas of code that were no longer being used - disabled `no-duplicate-landmark-elements` template lint rule as it's buggy and mostly gives false positives
11 lines
314 B
JavaScript
11 lines
314 B
JavaScript
module.exports = {
|
|
extends: "recommended",
|
|
|
|
rules: {
|
|
'no-forbidden-elements': ['meta', 'html', 'script'],
|
|
'no-implicit-this': {allow: ['noop', 'now', 'site-icon-style', 'accent-color-background']},
|
|
'no-inline-styles': false,
|
|
'no-duplicate-landmark-elements': false
|
|
}
|
|
};
|