2022-02-02 19:09:43 +03:00
|
|
|
module.exports = {
|
2022-02-07 13:21:03 +03:00
|
|
|
extends: "recommended",
|
|
|
|
|
|
|
|
rules: {
|
2022-03-03 00:53:10 +03:00
|
|
|
'no-forbidden-elements': ['meta', 'html', 'script'],
|
2022-04-27 12:49:55 +03:00
|
|
|
'no-implicit-this': {allow: ['noop', 'now', 'site-icon-style', 'accent-color-background']},
|
2022-10-03 23:15:27 +03:00
|
|
|
'no-inline-styles': false,
|
2023-01-04 12:39:32 +03:00
|
|
|
'no-duplicate-landmark-elements': false,
|
|
|
|
'no-pointer-down-event-binding': false,
|
|
|
|
'no-triple-curlies': false
|
2022-02-07 13:21:03 +03:00
|
|
|
}
|
|
|
|
};
|