-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
85 lines (80 loc) · 3.24 KB
/
index.html
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<title>Stylelint generator</title>
</head>
<body>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
(function(d, w, c) {
(w[c] = w[c] || []).push(function() {
try {
w.yaCounter43866449 = new Ya.Metrika({
id: 43866449,
clickmap: true,
trackLinks: true,
accurateTrackBounce: true
});
} catch (e) {}
});
var n = d.getElementsByTagName("script")[0],
s = d.createElement("script"),
f = function() {
n.parentNode.insertBefore(s, n);
};
s.type = "text/javascript";
s.async = true;
s.src = "https://mc.yandex.ru/metrika/watch.js";
if (w.opera == "[object Opera]") {
d.addEventListener("DOMContentLoaded", f, false);
} else {
f();
}
})(document, window, "yandex_metrika_callbacks");
</script>
<noscript>
<div><img src="https://mc.yandex.ru/watch/43866449" style="position:absolute; left:-9999px;" alt="" /></div>
</noscript>
<!-- /Yandex.Metrika counter -->
<div class="page">
<h1 class="page__heading">Stylelint Config Generator</h1>
<div class="page__about content">
<p><a href="https://stylelint.io/" target="_blank">Stylelint</a> is a modern CSS linter. Here you can create your configuration file.</p>
<p>The best way to use stylelint is to extend <a href="https://github.com/stylelint/stylelint-config-standard" target="_blank">stylelint-config-standard</a>, so you can focus on the main options.</p>
<p>Answer the questions and get your content for <mark>.stylelintrc</mark>. Read more about it's using in the <a href="https://stylelint.io/user-guide/configuration/">docs</a>.</p>
</div>
<div class="page__main">
<div class="generator">
<h3 class="block-title">Choose the code sample you like more:</h3>
<div class="oncogene"></div>
<div class="ui">
<ul class="ui__buttons-list">
<li class="ui__buttons-item">
<button class="button button--default js-back-btn">
< Back</button>
</li>
</ul>
</div>
</div>
<div class="result__wrapper">
<h3 class="block-title">Your config:</h3>
<div class="result">
<button class="button button--copy js-copy-btn">Copy</button>
<div class="config">{}</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<a href="https://github.com/maximgatilin/stylelint-config" target="_blank">
<img width="50" height="50" src="src/images/github.svg">
</a>
</footer>
<div class="popup__wrapper js-popup-wrapper hidden">
<div class="popup__window js-popup"></div>
</div>
<script src="dist/bundle.js"></script>
</body>
</html>