mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 10:33:37 -05:00
adding testes
This commit is contained in:
parent
c2e207f643
commit
2ff9be6197
2 changed files with 21 additions and 28 deletions
|
@ -1,9 +1,12 @@
|
|||
/* Bad */
|
||||
/* Multi-line */
|
||||
/* Comment */
|
||||
.selector-3[type="text"] {
|
||||
background: linear-gradient(#FFFFFF, rgba(0, 0, 0, 0.8));
|
||||
box-sizing: border-box;
|
||||
display: block;
|
||||
color: #AAAAAA;
|
||||
using System;
|
||||
|
||||
namespace HelloWorld
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine(Hello World);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,22 +1,12 @@
|
|||
/**
|
||||
* Multi-line comment
|
||||
*/
|
||||
using System;
|
||||
|
||||
.selector-1,
|
||||
.selector-2,
|
||||
.selector-3[type="text"] {
|
||||
background: linear-gradient(#fff, rgba(0, 0, 0, 0.8));
|
||||
box-sizing: border-box;
|
||||
display: block;
|
||||
color: #333;
|
||||
namespace HelloWorld
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello World!");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.selector-a,
|
||||
.selector-b:not(:first-child) {
|
||||
padding: 10px !important;
|
||||
top: calc(calc(1em * 2) / 3);
|
||||
}
|
||||
|
||||
.selector-x { width: 10%; }
|
||||
.selector-y { width: 20%; }
|
||||
.selector-z { width: 30%; }
|
||||
|
|
Loading…
Reference in a new issue