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-03-03 00:53:10 +03:00
|
|
|
'no-inline-styles': false
|
2022-02-07 13:21:03 +03:00
|
|
|
}
|
|
|
|
};
|