Skip to content

Commit e8798da

Browse files
authoredFeb 18, 2025··
prevent-abbreviations: Preserve iOS (#2560)
1 parent 93f9bc2 commit e8798da

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed
 

‎rules/shared/abbreviations.js

+2
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,8 @@ export const defaultAllowList = {
252252
getInitialProps: true,
253253
getServerSideProps: true,
254254
getStaticProps: true,
255+
// The name iOS is a standard name for an OS
256+
iOS: true,
255257
// React PropTypes
256258
// https://reactjs.org/docs/typechecking-with-proptypes.html
257259
propTypes: true,

‎test/prevent-abbreviations.js

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ const tests = {
129129
'const i18n = new I18n({ locales: ["en", "fr"] })',
130130
'const i18nData = {}',
131131
'const l10n = new L10n()',
132+
'const iOS = true',
132133
outdent`
133134
(class {
134135
error() {}

0 commit comments

Comments
 (0)
Please sign in to comment.