CognxSafeTrack commited on
Commit
86262f4
·
1 Parent(s): e290651

chore(ide): add vscode tailwind custom data to suppress css warnings

Browse files
Files changed (2) hide show
  1. .vscode/settings.json +4 -0
  2. .vscode/tailwind.json +25 -0
.vscode/settings.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "css.customData": [".vscode/tailwind.json"],
3
+ "css.lint.unknownAtRules": "ignore"
4
+ }
.vscode/tailwind.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": 1.1,
3
+ "atDirectives": [
4
+ {
5
+ "name": "@tailwind",
6
+ "description": "Use the `@tailwind` directive to insert Tailwind's `base`, `components`, `utilities` and `screens` styles into your CSS.",
7
+ "references": [
8
+ {
9
+ "name": "Tailwind Documentation",
10
+ "url": "https://tailwindcss.com/docs/functions-and-directives#tailwind"
11
+ }
12
+ ]
13
+ },
14
+ {
15
+ "name": "@apply",
16
+ "description": "Use the `@apply` directive to inline any existing utility classes into your own custom CSS.",
17
+ "references": [
18
+ {
19
+ "name": "Tailwind Documentation",
20
+ "url": "https://tailwindcss.com/docs/functions-and-directives#apply"
21
+ }
22
+ ]
23
+ }
24
+ ]
25
+ }