Fix linting issues

Repository details (talkie)
Project page
talkie
Project log category
(588 entries)
Repository
@joelpurra/talkie
Owner
@joelpurra
Contributors
Contributors on Github
Project status
⏲️ This project has had recent commits.
📂 This project is open.
🌠 This project is popular.
Repository activity period
🗓
Commits
630 commits
Stars
69 stars
Commit details (97637971)
Author
Authored at
Committer
Joel Purra
Committed at

Commit message

Fix linting issues

Raw text
Fix linting issues

Changed files (159)

Path Additions Deletions
.xo-config.js +2 -2
render.html.js +22 -0
rollup.config.background.js +10 -8
rollup.config.demo.html.js +4 -2
rollup.config.demo.js +4 -2
rollup.config.extension-translator.js +8 -6
rollup.config.filesize.js +3 -1
rollup.config.license.js +4 -4
rollup.config.options.html.js +4 -2
rollup.config.options.js +4 -2
rollup.config.popup.html.js +4 -2
rollup.config.popup.js +4 -2
rollup.config.react.browser.js +16 -14
rollup.config.react.js +3 -1
rollup.config.react.node.js +13 -11
rollup.config.stay-alive.js +10 -8
src/.xo-config.js +7 -0
src/background/background.js +15 -13
src/background/clipboard-manager.js +1 -1
src/background/context-menu-manager.js +35 -34
src/background/language-helper.js +11 -11
src/background/on-installed-manager.js +3 -1
src/background/permissions-manager.js +3 -3
src/background/read-clipboard-manager.js +1 -0
src/background/suspension-manager.js +1 -3
src/background/talkie-background.js +5 -3
src/background/talkie-speaker.js +5 -5
src/background/text-helper.js +1 -0
src/background/voice-language-manager.js +2 -2
src/demo/actions/index.js +3 -1
src/demo/components/footer.jsx +7 -9
src/demo/components/header.jsx +11 -15
src/demo/components/main.jsx +21 -23
src/demo/components/sections/about.jsx +1 -1
src/demo/components/sections/features.jsx +6 -11
src/demo/components/sections/support.jsx +11 -12
src/demo/components/sections/usage.jsx +7 -9
src/demo/components/sections/voices.jsx +26 -31
src/demo/components/sections/welcome.jsx +21 -27
src/demo/containers/app.jsx +6 -10
src/demo/containers/voices-container.jsx +6 -6
src/demo/containers/welcome-container.jsx +16 -22
src/demo/demo.html.js +3 -1
src/demo/load-root.jsx +4 -2
src/demo/selectors/index.js +3 -1
src/frontend/locale-redirect.js +1 -1
src/options/actions/index.js +4 -2
src/options/actions/navigation.js +1 -1
src/options/actions/voices.js +9 -9
src/options/components/main.jsx +16 -17
src/options/components/range/logarithmic-scale-range.jsx +8 -15
src/options/components/range/scale-range-datalist-option.jsx +2 -5
src/options/components/range/scale-range-datalist.jsx +2 -6
src/options/components/range/scale-range.jsx +10 -19
src/options/components/sections/about.jsx +14 -22
src/options/components/sections/editions.jsx +0 -4
src/options/components/sections/editions/talkie-premium-edition.jsx +5 -9
src/options/components/sections/text.jsx +1 -4
src/options/components/sections/text/speak-long-texts.jsx +3 -6
src/options/components/sections/voices.jsx +15 -24
src/options/components/sections/voices/available-languages.jsx +10 -13
src/options/components/sections/voices/available-voices.jsx +7 -8
src/options/components/sections/voices/range-with-heading.jsx +12 -16
src/options/components/sections/voices/sample-text.jsx +6 -6
src/options/components/sections/voices/toggle-default.jsx +5 -5
src/options/containers/about-container.jsx +14 -22
src/options/containers/app.jsx +13 -8
src/options/containers/text-container.jsx +1 -0
src/options/containers/voices-container.jsx +29 -22
src/options/load-root.jsx +4 -2
src/options/options.html.js +3 -1
src/options/reducers/index.js +1 -1
src/options/reducers/voices.js +4 -4
src/options/selectors/index.js +3 -1
src/popup/actions/index.js +3 -1
src/popup/components/main.jsx +7 -12
src/popup/components/sections/footer.jsx +7 -9
src/popup/components/sections/header.jsx +14 -18
src/popup/components/sections/menu.jsx +19 -19
src/popup/components/sections/progress.jsx +4 -10
src/popup/components/sections/status.jsx +11 -11
src/popup/containers/app.jsx +1 -1
src/popup/containers/progress-container.jsx +2 -2
src/popup/hocs/is-speaking-updater.jsx +2 -0
src/popup/hocs/is-speaking.jsx +5 -5
src/popup/hocs/progress-updater.jsx +3 -1
src/popup/hocs/progress.jsx +9 -12
src/popup/load-root.jsx +4 -2
src/popup/popup.html.js +3 -1
src/shared/actions/index.js +3 -1
src/shared/actions/metadata.js +4 -4
src/shared/actions/progress.js +3 -3
src/shared/actions/speaking.js +1 -1
src/shared/actions/voices.js +4 -4
src/shared/basic.js +1 -1
src/shared/components/discretional.jsx +2 -5
src/shared/components/editions/extension-short-name.jsx +0 -4
src/shared/components/error-boundary.jsx +106 -110
src/shared/components/form/checkbox.jsx +3 -8
src/shared/components/form/multiline-select.jsx +11 -14
src/shared/components/hero-section/hero-section.jsx +0 -4
src/shared/components/hero-section/styles/section-base.js +13 -13
src/shared/components/icon/icon.jsx +9 -10
src/shared/components/icon/social-share-icon.jsx +6 -8
src/shared/components/icon/talkie-edition-icon.jsx +7 -9
src/shared/components/icon/talkie-free-icon.jsx +6 -7
src/shared/components/icon/talkie-premium-icon.jsx +6 -7
src/shared/components/loading.jsx +2 -5
src/shared/components/navigation/nav.jsx +9 -9
src/shared/components/navigation/tab-contents.jsx +3 -3
src/shared/components/section/edition-section.jsx +5 -10
src/shared/components/section/free-section.jsx +2 -7
src/shared/components/section/premium-section.jsx +2 -7
src/shared/components/section/styles/section-base.js +13 -13
src/shared/components/sharing/sharing-icons.jsx +1 -5
src/shared/components/style-root.jsx +2 -7
src/shared/configuration.js +2 -2
src/shared/containers/nav-container.jsx +2 -1
src/shared/containers/providers.jsx +1 -1
src/shared/containers/root.jsx +4 -4
src/shared/containers/state-root.jsx +4 -6
src/shared/events.js +6 -6
src/shared/execute.js +2 -2
src/shared/hocs/broadcaster-provider.jsx +1 -1
src/shared/hocs/configuration-provider.jsx +4 -2
src/shared/hocs/pass-selected-text-to-background.jsx +2 -4
src/shared/reducers/metadata.js +2 -2
src/shared/reducers/navigation.js +2 -6
src/shared/reducers/progress.js +1 -1
src/shared/reducers/voices.js +2 -2
src/shared/redux-store-provider.js +7 -7
src/shared/renderers/render-react-html.js +1 -1
src/shared/selectors/index.js +3 -1
src/shared/storage-manager.js +2 -2
src/shared/styles/button/button-base.js +5 -5
src/shared/styles/form/form-base.js +4 -4
src/shared/styles/layout/layout-base.js +10 -10
src/shared/styles/list/list-base.js +9 -9
src/shared/styles/table/table-base.js +1 -1
src/shared/styles/text/lighter.js +3 -3
src/shared/styles/text/text-base.js +11 -11
src/shared/tabs.js +1 -1
src/shared/talkie-progress.js +2 -2
src/shared/utils/reduce-helpers.js +10 -2
src/shared/utils/transform-voices.js +8 -0
src/shared/utils/ui.js +4 -4
src/shared/voices.js +14 -14
src/split-environments/node/.xo-config.js +26 -0
src/split-environments/node/translator-provider.js +9 -8
src/split-environments/webextension/.xo-config.js +29 -0
src/stay-alive/suspension-listener-manager.js +1 -1
src/unshared/actions/index.js +3 -1
src/unshared/actions/navigation.js +1 -1
tools/translations/.xo-config.js +26 -0
tools/translations/extension-translator.js +6 -8
tools/translations/files-translator.js +5 -4
tools/translations/google-cloud-translate-translator-service.js +10 -8
tools/translations/messages-translator-factory.js +2 -2
tools/translations/messages-translator.js +6 -3

Commit categories (3)