This commit is contained in:
Peter deHaan 2018-11-06 15:45:27 -08:00
Родитель caeb7853eb
Коммит 44638eae24
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 23BB6335A894F873
3 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -15,7 +15,8 @@ module.exports = {
},
"plugins": [
"jsx-a11y",
"mozilla"
"mozilla",
"react"
],
"root": true,
"rules": {
@ -29,5 +30,10 @@ module.exports = {
// them, but we aren't currently doing that.
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/label-has-for": "off",
},
"settings": {
"react": {
"version": "16"
}
}
};

Просмотреть файл

@ -293,7 +293,7 @@ class MailPreference extends React.Component {
</div>
<div className="separator"></div>
<p class="sorry">Sorry we don&#39;t support any other mail providers. <a href="https://github.com/mozilla/email-tabs/blob/master/docs/faq.md#frequently-asked-questions">Learn more</a></p>
<p className="sorry">Sorry we don&#39;t support any other mail providers. <a href="https://github.com/mozilla/email-tabs/blob/master/docs/faq.md#frequently-asked-questions">Learn more</a></p>
{this.props.mailProvider ? footer : null}
</div>;
}

Просмотреть файл

@ -41,7 +41,7 @@
"scripts": {
"start": "npm-run-all build run",
"lint": "npm-run-all lint:*",
"lint:addon": "web-ext lint -s addon --ignore-files=build/*.js || true",
"lint:addon": "web-ext lint -s addon --ignore-files='build/*.js' --self-hosted || true",
"lint:js": "eslint addon --ext=js,jsx",
"lint:styles": "stylelint ./addon/*.css",
"preview-templates": "http-server -c-1 .",