forked from html-sketchapp/html-sketchapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
56 lines (56 loc) · 1.43 KB
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"extends": [
"./node_modules/eslint-config-brainly/rules/main.js"
],
"rules": {
"no-console": 0,
"new-cap": 0,
"no-prototype-builtins": 0
},
"env": {
"jest": true
},
"globals": {
"NSFont": false,
"NSArray": false,
"NSColor": false,
"NSURL": false,
"NSImage": false,
"MSImageData": false,
"NSAttributedString": false,
"MSAttributedString": false,
"NSMutableParagraphStyle": false,
"NSFontCondensedTrait": false,
"NSFontItalicTrait": false,
"NSFontWeightRegular": false,
"NSFontManager": false,
"NSData": false,
"NSMakeRange": false,
"NSDataBase64EncodingEndLineWithCarriageReturn": false,
"NSFontWeightTrait": false,
"NSFontTraitsAttribute": false,
"NSFontSymbolicTrait": false,
"NSFontWeightBold": false,
"NSFontWeightUltraLight": false,
"NSFontWeightThin": false,
"NSFontWeightLight": false,
"NSFontWeightMedium": false,
"NSFontWeightSemibold": false,
"NSFontWeightHeavy": false,
"NSFontWeightBlack": false,
"NSOpenPanel": false,
"NSModalResponseOK": false,
"NSString": false,
"NSUTF8StringEncoding": false,
"NSAlert": false,
"NSMutableAttributedString": false,
"MSSVGImporter": false,
"COSAlertWindow": false,
"NSMakeRect": false,
"NSBundle": false,
"MSSharedStyle": false,
"MSLayerGroup": false,
"NSPasteboard": false,
"NSPasteboardTypeString": false
}
}