Skip to content

Commit e251496

Browse files
committed
fix(linter) fix lint config and lint comments to conform to new tailwind version
1 parent 54709ee commit e251496

File tree

5 files changed

+0
-7
lines changed

5 files changed

+0
-7
lines changed

eslint.config.mjs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import tseslint from 'typescript-eslint'
33
import react from 'eslint-plugin-react'
44
import reactRefresh from 'eslint-plugin-react-refresh'
55
import reactHooks from 'eslint-plugin-react-hooks'
6-
import tailwindcss from 'eslint-plugin-tailwindcss'
76
import prettier from 'eslint-config-prettier'
87

98
export default tseslint.config(
@@ -34,13 +33,11 @@ export default tseslint.config(
3433
react,
3534
'react-refresh': reactRefresh,
3635
'react-hooks': reactHooks,
37-
tailwindcss,
3836
},
3937
rules: {
4038
// ...react.configs.recommended.rules,
4139
// ...react.configs['jsx-runtime'].rules,
4240
...reactHooks.configs.recommended.rules,
43-
...tailwindcss.configs.recommended.rules,
4441
'no-console': 'warn',
4542
'react-refresh/only-export-components': 'off',
4643
'@typescript-eslint/no-unused-vars': [

src/features/app-interfaces/components/create/from-app-id-card.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ export function FromAppIdCard({ machine }: Props) {
117117
onSubmit={fromAppIdSelected}
118118
formAction={
119119
<FormActions>
120-
{/* eslint-disable-next-line tailwindcss/no-custom-classname */}
121120
<SubmitButton className="plausible-event-name=app-lab-use-existing-app-id">Use existing</SubmitButton>
122121
</FormActions>
123122
}

src/features/app-interfaces/components/create/from-deployment-card.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export function FromDeploymentCard({ machine }: Props) {
3232
<span>Deploy a new app and create an app interface.</span>
3333
</div>
3434
<div className="flex grow flex-col">
35-
{/* eslint-disable-next-line tailwindcss/no-custom-classname */}
3635
<div className="plausible-event-name=app-lab-deploy-new-app ml-auto mt-auto">
3736
<Button onClick={fromDeploymentSelected} {...disabledProps}>
3837
{deployAppLabel}

src/features/fund/components/fund-account-form.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ export function FundAccountForm({ onCreateReceiver, onSubmit, limit, defaultRece
7878
formAction={
7979
<FormActions>
8080
<SubmitButton
81-
// eslint-disable-next-line tailwindcss/no-custom-classname
8281
className={
8382
onCreateReceiver ? 'plausible-event-name=fund-account-form-create-and-fund' : 'plausible-event-name=fund-account-form-fund'
8483
}

src/features/transaction-wizard/components/transactions-builder.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable tailwindcss/no-custom-classname */
21
import algosdk from 'algosdk'
32
import { useCallback, useMemo, useState } from 'react'
43
import { DialogBodyProps, useDialogForm } from '@/features/common/hooks/use-dialog-form'

0 commit comments

Comments
 (0)