axinite 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 26dfe3b85de53a5d2ceaf58e41be4b2926928615
4
- data.tar.gz: 3a65f0cc6f396f1529e57c19d845983736430bea
3
+ metadata.gz: 26a34f4b759b8fb66898f1e296f72340666103ad
4
+ data.tar.gz: be540d739605fbee8726633d92e060b9e1d14cf6
5
5
  SHA512:
6
- metadata.gz: 133d621c785627d49e2252a7607c39ff62a60424950d4740f7475927054e444e55f11d9850f50fc26e8639622f3669883948db67607b34694eece5b5306a6ab6
7
- data.tar.gz: 6235c0c61c21eeee6eca6a309838d112c660a3ab98461868b555ba2880ee38f734c4a4bdecf1f2c0a30e32013729c0ebae0ce38dcdc597e47522cc63ac2c5c64
6
+ metadata.gz: 9d46bea84d40063f2996b307411828231c9a2d017e3fefc0f2b523201fffd494edbd9385ac6356fb6201c6d1493a88dc08fe07027b4ababbfa66fe43fef2825e
7
+ data.tar.gz: b0a8efe89e82acf5ea30b3d2ac7e01eea3fbcd3ae63504c5442bc1f7a117bd41b4978737709adb47c6b0c5c31e73944a79bc05221b47470f3b1ee93c5ae0aee1
@@ -13,5 +13,6 @@
13
13
  @import "forms";
14
14
  @import "gradients";
15
15
  @import "messages";
16
+ @import "syntax";
16
17
  @import "tooltips";
17
18
  @import "utilities";
@@ -0,0 +1,542 @@
1
+ scss_files:
2
+ - "**/*.scss"
3
+
4
+ exclude:
5
+ - "scss/_normalize.scss"
6
+
7
+ plugin_directories: ['.scss-linters']
8
+
9
+ plugin_gems: []
10
+
11
+ severity: warning
12
+
13
+ linters:
14
+ BangFormat:
15
+ enabled: true
16
+ space_before_bang: true
17
+ space_after_bang: false
18
+
19
+ BemDepth:
20
+ enabled: false
21
+ max_elements: 1
22
+
23
+ BorderZero:
24
+ enabled: true
25
+ convention: zero
26
+ exclude:
27
+ - _normalize.scss
28
+
29
+ ChainedClasses:
30
+ enabled: false
31
+
32
+ ColorKeyword:
33
+ enabled: true
34
+
35
+ ColorVariable:
36
+ enabled: false
37
+
38
+ Comment:
39
+ enabled: true
40
+ exclude:
41
+ - _normalize.scss
42
+ - axinite.scss
43
+ style: silent
44
+
45
+ DebugStatement:
46
+ enabled: true
47
+
48
+ DeclarationOrder:
49
+ enabled: false
50
+
51
+ DisableLinterReason:
52
+ enabled: false
53
+
54
+ DuplicateProperty:
55
+ enabled: true
56
+ exclude:
57
+ - _normalize.scss
58
+
59
+ ElsePlacement:
60
+ enabled: true
61
+ style: same_line
62
+
63
+ EmptyLineBetweenBlocks:
64
+ enabled: false
65
+ ignore_single_line_blocks: true
66
+
67
+ EmptyRule:
68
+ enabled: true
69
+
70
+ ExtendDirective:
71
+ enabled: false
72
+
73
+ FinalNewline:
74
+ enabled: true
75
+ present: true
76
+
77
+ HexLength:
78
+ enabled: true
79
+ style: short
80
+
81
+ HexNotation:
82
+ enabled: true
83
+ style: lowercase
84
+
85
+ HexValidation:
86
+ enabled: true
87
+
88
+ IdSelector:
89
+ enabled: true
90
+
91
+ ImportantRule:
92
+ enabled: false
93
+
94
+ ImportPath:
95
+ enabled: true
96
+ leading_underscore: false
97
+ filename_extension: false
98
+
99
+ Indentation:
100
+ enabled: true
101
+ allow_non_nested_indentation: false
102
+ character: space
103
+ width: 2
104
+
105
+ LeadingZero:
106
+ enabled: true
107
+ style: exclude_zero
108
+ exclude:
109
+ - _normalize.scss
110
+
111
+ MergeableSelector:
112
+ enabled: false
113
+ force_nesting: true
114
+
115
+ NameFormat:
116
+ enabled: true
117
+ allow_leading_underscore: true
118
+ convention: hyphenated_lowercase
119
+
120
+ NestingDepth:
121
+ enabled: true
122
+ max_depth: 4
123
+ ignore_parent_selectors: false
124
+
125
+ PlaceholderInExtend:
126
+ enabled: false
127
+
128
+ PropertyCount:
129
+ enabled: false
130
+ include_nested: false
131
+ max_properties: 10
132
+
133
+ PropertySortOrder:
134
+ enabled: true
135
+ ignore_unspecified: false
136
+ min_properties: 2
137
+ separate_groups: false
138
+ exclude:
139
+ - _normalize.scss
140
+ order:
141
+ - position
142
+ - top
143
+ - right
144
+ - bottom
145
+ - left
146
+ - z-index
147
+ - -webkit-box-sizing
148
+ - -moz-box-sizing
149
+ - box-sizing
150
+ - display
151
+ - flex
152
+ - flex-align
153
+ - flex-basis
154
+ - flex-direction
155
+ - flex-flow
156
+ - flex-grow
157
+ - flex-order
158
+ - flex-pack
159
+ - float
160
+ - width
161
+ - min-width
162
+ - max-width
163
+ - height
164
+ - min-height
165
+ - max-height
166
+ - padding
167
+ - padding-top
168
+ - padding-right
169
+ - padding-bottom
170
+ - padding-left
171
+ - margin
172
+ - margin-top
173
+ - margin-right
174
+ - margin-bottom
175
+ - margin-left
176
+ - overflow
177
+ - overflow-x
178
+ - overflow-y
179
+ - -webkit-overflow-scrolling
180
+ - -ms-overflow-x
181
+ - -ms-overflow-y
182
+ - -ms-overflow-style
183
+ - clip
184
+ - clear
185
+ - font
186
+ - font-family
187
+ - font-size
188
+ - font-style
189
+ - font-weight
190
+ - font-variant
191
+ - font-size-adjust
192
+ - font-stretch
193
+ - font-effect
194
+ - font-emphasize
195
+ - font-emphasize-position
196
+ - font-emphasize-style
197
+ - font-smooth
198
+ - -webkit-hyphens
199
+ - -moz-hyphens
200
+ - hyphens
201
+ - line-height
202
+ - color
203
+ - text-align
204
+ - -webkit-text-align-last
205
+ - -moz-text-align-last
206
+ - -ms-text-align-last
207
+ - text-align-last
208
+ - text-emphasis
209
+ - text-emphasis-color
210
+ - text-emphasis-style
211
+ - text-emphasis-position
212
+ - text-decoration
213
+ - text-indent
214
+ - text-justify
215
+ - text-outline
216
+ - -ms-text-overflow
217
+ - text-overflow
218
+ - text-overflow-ellipsis
219
+ - text-overflow-mode
220
+ - text-shadow
221
+ - text-transform
222
+ - text-wrap
223
+ - -webkit-text-size-adjust
224
+ - -ms-text-size-adjust
225
+ - letter-spacing
226
+ - -ms-word-break
227
+ - word-break
228
+ - word-spacing
229
+ - -ms-word-wrap
230
+ - word-wrap
231
+ - -moz-tab-size
232
+ - -o-tab-size
233
+ - tab-size
234
+ - white-space
235
+ - vertical-align
236
+ - list-style
237
+ - list-style-position
238
+ - list-style-type
239
+ - list-style-image
240
+ - pointer-events
241
+ - -ms-touch-action
242
+ - touch-action
243
+ - cursor
244
+ - visibility
245
+ - zoom
246
+ - table-layout
247
+ - empty-cells
248
+ - caption-side
249
+ - border-spacing
250
+ - border-collapse
251
+ - content
252
+ - quotes
253
+ - counter-reset
254
+ - counter-increment
255
+ - resize
256
+ - -webkit-user-select
257
+ - -moz-user-select
258
+ - -ms-user-select
259
+ - -o-user-select
260
+ - user-select
261
+ - nav-index
262
+ - nav-up
263
+ - nav-right
264
+ - nav-down
265
+ - nav-left
266
+ - background
267
+ - background-color
268
+ - background-image
269
+ - -ms-filter:\\'progid:DXImageTransform.Microsoft.gradient
270
+ - filter:progid:DXImageTransform.Microsoft.gradient
271
+ - filter:progid:DXImageTransform.Microsoft.AlphaImageLoader
272
+ - filter
273
+ - background-repeat
274
+ - background-attachment
275
+ - background-position
276
+ - background-position-x
277
+ - background-position-y
278
+ - -webkit-background-clip
279
+ - -moz-background-clip
280
+ - background-clip
281
+ - background-origin
282
+ - -webkit-background-size
283
+ - -moz-background-size
284
+ - -o-background-size
285
+ - background-size
286
+ - border
287
+ - border-color
288
+ - border-style
289
+ - border-width
290
+ - border-top
291
+ - border-top-color
292
+ - border-top-style
293
+ - border-top-width
294
+ - border-right
295
+ - border-right-color
296
+ - border-right-style
297
+ - border-right-width
298
+ - border-bottom
299
+ - border-bottom-color
300
+ - border-bottom-style
301
+ - border-bottom-width
302
+ - border-left
303
+ - border-left-color
304
+ - border-left-style
305
+ - border-left-width
306
+ - border-radius
307
+ - border-top-left-radius
308
+ - border-top-right-radius
309
+ - border-bottom-right-radius
310
+ - border-bottom-left-radius
311
+ - -webkit-border-image
312
+ - -moz-border-image
313
+ - -o-border-image
314
+ - border-image
315
+ - -webkit-border-image-source
316
+ - -moz-border-image-source
317
+ - -o-border-image-source
318
+ - border-image-source
319
+ - -webkit-border-image-slice
320
+ - -moz-border-image-slice
321
+ - -o-border-image-slice
322
+ - border-image-slice
323
+ - -webkit-border-image-width
324
+ - -moz-border-image-width
325
+ - -o-border-image-width
326
+ - border-image-width
327
+ - -webkit-border-image-outset
328
+ - -moz-border-image-outset
329
+ - -o-border-image-outset
330
+ - border-image-outset
331
+ - -webkit-border-image-repeat
332
+ - -moz-border-image-repeat
333
+ - -o-border-image-repeat
334
+ - border-image-repeat
335
+ - outline
336
+ - outline-width
337
+ - outline-style
338
+ - outline-color
339
+ - outline-offset
340
+ - -webkit-box-shadow
341
+ - -moz-box-shadow
342
+ - box-shadow
343
+ - filter:progid:DXImageTransform.Microsoft.Alpha(Opacity
344
+ - -ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha
345
+ - opacity
346
+ - -ms-interpolation-mode
347
+ - -webkit-transition
348
+ - -moz-transition
349
+ - -ms-transition
350
+ - -o-transition
351
+ - transition
352
+ - -webkit-transition-delay
353
+ - -moz-transition-delay
354
+ - -ms-transition-delay
355
+ - -o-transition-delay
356
+ - transition-delay
357
+ - -webkit-transition-timing-function
358
+ - -moz-transition-timing-function
359
+ - -ms-transition-timing-function
360
+ - -o-transition-timing-function
361
+ - transition-timing-function
362
+ - -webkit-transition-duration
363
+ - -moz-transition-duration
364
+ - -ms-transition-duration
365
+ - -o-transition-duration
366
+ - transition-duration
367
+ - -webkit-transition-property
368
+ - -moz-transition-property
369
+ - -ms-transition-property
370
+ - -o-transition-property
371
+ - transition-property
372
+ - -webkit-transform
373
+ - -moz-transform
374
+ - -ms-transform
375
+ - -o-transform
376
+ - transform
377
+ - -webkit-transform-origin
378
+ - -moz-transform-origin
379
+ - -ms-transform-origin
380
+ - -o-transform-origin
381
+ - transform-origin
382
+ - -webkit-animation
383
+ - -moz-animation
384
+ - -ms-animation
385
+ - -o-animation
386
+ - animation
387
+ - -webkit-animation-name
388
+ - -moz-animation-name
389
+ - -ms-animation-name
390
+ - -o-animation-name
391
+ - animation-name
392
+ - -webkit-animation-duration
393
+ - -moz-animation-duration
394
+ - -ms-animation-duration
395
+ - -o-animation-duration
396
+ - animation-duration
397
+ - -webkit-animation-play-state
398
+ - -moz-animation-play-state
399
+ - -ms-animation-play-state
400
+ - -o-animation-play-state
401
+ - animation-play-state
402
+ - -webkit-animation-timing-function
403
+ - -moz-animation-timing-function
404
+ - -ms-animation-timing-function
405
+ - -o-animation-timing-function
406
+ - animation-timing-function
407
+ - -webkit-animation-delay
408
+ - -moz-animation-delay
409
+ - -ms-animation-delay
410
+ - -o-animation-delay
411
+ - animation-delay
412
+ - -webkit-animation-iteration-count
413
+ - -moz-animation-iteration-count
414
+ - -ms-animation-iteration-count
415
+ - -o-animation-iteration-count
416
+ - animation-iteration-count
417
+ - -webkit-animation-direction
418
+ - -moz-animation-direction
419
+ - -ms-animation-direction
420
+ - -o-animation-direction
421
+
422
+
423
+ PropertySpelling:
424
+ enabled: true
425
+ extra_properties: []
426
+ disabled_properties: []
427
+
428
+ PropertyUnits:
429
+ enabled: true
430
+ global: [
431
+ 'ch', 'em', 'ex', 'rem',
432
+ 'cm', 'in', 'mm', 'pc', 'pt', 'px', 'q',
433
+ 'vh', 'vw', 'vmin', 'vmax',
434
+ 'deg', 'grad', 'rad', 'turn',
435
+ 'ms', 's',
436
+ 'Hz', 'kHz',
437
+ 'dpi', 'dpcm', 'dppx',
438
+ '%']
439
+ properties: {}
440
+
441
+ PseudoElement:
442
+ enabled: true
443
+
444
+ QualifyingElement:
445
+ enabled: true
446
+ exclude:
447
+ - _normalize.scss
448
+ allow_element_with_attribute: false
449
+ allow_element_with_class: false
450
+ allow_element_with_id: false
451
+
452
+ SelectorDepth:
453
+ enabled: true
454
+ max_depth: 4
455
+
456
+ SelectorFormat:
457
+ enabled: false
458
+ convention: hyphenated_lowercase
459
+
460
+ Shorthand:
461
+ enabled: true
462
+ allowed_shorthands: [1, 2, 3, 4]
463
+
464
+ SingleLinePerProperty:
465
+ enabled: false
466
+ allow_single_line_rule_sets: true
467
+
468
+ SingleLinePerSelector:
469
+ enabled: false
470
+
471
+ SpaceAfterComma:
472
+ enabled: false
473
+ style: one_space
474
+
475
+ SpaceAfterPropertyColon:
476
+ enabled: true
477
+ style: at_least_one_space
478
+
479
+ SpaceAfterPropertyName:
480
+ enabled: true
481
+
482
+ SpaceAfterVariableName:
483
+ enabled: true
484
+
485
+ SpaceAroundOperator:
486
+ enabled: true
487
+ style: one_space
488
+
489
+ SpaceBeforeBrace:
490
+ enabled: true
491
+ style: space
492
+ allow_single_line_padding: false
493
+
494
+ SpaceBetweenParens:
495
+ enabled: true
496
+ spaces: 0
497
+
498
+ StringQuotes:
499
+ enabled: true
500
+ style: double_quotes
501
+
502
+ TrailingSemicolon:
503
+ enabled: true
504
+
505
+ TrailingWhitespace:
506
+ enabled: true
507
+
508
+ TrailingZero:
509
+ enabled: false
510
+
511
+ TransitionAll:
512
+ enabled: false
513
+
514
+ UnnecessaryMantissa:
515
+ enabled: true
516
+
517
+ UnnecessaryParentReference:
518
+ enabled: true
519
+
520
+ UrlFormat:
521
+ enabled: true
522
+
523
+ UrlQuotes:
524
+ enabled: true
525
+
526
+ VariableForProperty:
527
+ enabled: false
528
+ properties: []
529
+
530
+ VendorPrefix:
531
+ enabled: true
532
+ identifier_list: base
533
+ additional_identifiers: []
534
+ excluded_identifiers: []
535
+ exclude:
536
+ - _normalize.scss
537
+
538
+ ZeroUnit:
539
+ enabled: true
540
+
541
+ Compass::*:
542
+ enabled: false