Skip to content

Commit 69b279e

Browse files
committed
lint
1 parent 133c2e4 commit 69b279e

File tree

2 files changed

+5
-18
lines changed

2 files changed

+5
-18
lines changed
Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"compilerOptions": {
3-
"lib": [
4-
"dom",
5-
"dom.iterable",
6-
"esnext"
7-
],
3+
"lib": ["dom", "dom.iterable", "esnext"],
84
"allowJs": true,
95
"skipLibCheck": true,
106
"strict": true,
@@ -22,19 +18,10 @@
2218
}
2319
],
2420
"paths": {
25-
"@/*": [
26-
"./src/*"
27-
]
21+
"@/*": ["./src/*"]
2822
},
2923
"target": "ES2017"
3024
},
31-
"include": [
32-
"next-env.d.ts",
33-
"**/*.ts",
34-
"**/*.tsx",
35-
".next/types/**/*.ts"
36-
],
37-
"exclude": [
38-
"node_modules"
39-
]
25+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
26+
"exclude": ["node_modules"]
4027
}

packages/tailwind/src/utils/tailwindcss/clone-element-with-inlined-styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import React from 'react';
33
import type { EmailElementProps } from '../../tailwind';
44
import { sanitizeClassName } from '../compatibility/sanitize-class-name';
55
import { makeInlineStylesFor } from '../css/make-inline-styles-for';
6-
import { sanitizeNonInlinableClasses } from '../css/sanitize-non-inlinable-classes';
76
import { sanitizeDeclarations } from '../css/sanitize-declarations';
7+
import { sanitizeNonInlinableClasses } from '../css/sanitize-non-inlinable-classes';
88
import { isComponent } from '../react/is-component';
99
import type { setupTailwind } from './setup-tailwind';
1010

0 commit comments

Comments
 (0)