diff options
| author | Amaury Levé | 2018-06-25 14:34:12 +0200 | 
|---|---|---|
| committer | Elena Vilchik | 2018-06-26 11:49:59 +0200 | 
| commit | 260881d116176050141705295ce871bf23a790c2 (patch) | |
| tree | d3aca93598630be01974d1a7aee238510561add1 /its | |
| parent | ad92bb6746b5b29ce41f91f7aa6dc2bb8195fa07 (diff) | |
| download | sonar-css-260881d116176050141705295ce871bf23a790c2.tar.bz2 | |
Rule S4670: Selectors should be known
Diffstat (limited to 'its')
| -rw-r--r-- | its/plugin/projects/issues-project/src/file1.css | 5 | ||||
| -rw-r--r-- | its/plugin/projects/issues-project/src/file2.less | 5 | ||||
| -rw-r--r-- | its/plugin/projects/issues-project/src/file3.scss | 5 | 
3 files changed, 12 insertions, 3 deletions
| diff --git a/its/plugin/projects/issues-project/src/file1.css b/its/plugin/projects/issues-project/src/file1.css index 35a9655..65a0392 100644 --- a/its/plugin/projects/issues-project/src/file1.css +++ b/its/plugin/projects/issues-project/src/file1.css @@ -24,6 +24,9 @@ a {    color: pink;;                                               /* S1116 | no-extra-semicolons */  } +unknown {                                                     /* S4670 | selector-type-no-unknown */ +  color: black; +}  @keyframes important1 {    from { @@ -34,4 +37,4 @@ a {    }  } -foo { }                                                       /* S4658 | block-no-empty */
\ No newline at end of file +.class2 { }                                                   /* S4658 | block-no-empty */
\ No newline at end of file diff --git a/its/plugin/projects/issues-project/src/file2.less b/its/plugin/projects/issues-project/src/file2.less index 78138c9..4b76034 100644 --- a/its/plugin/projects/issues-project/src/file2.less +++ b/its/plugin/projects/issues-project/src/file2.less @@ -24,6 +24,9 @@ a {    color: pink;;                                               /* S1116 | no-extra-semicolons */  } +unknown {                                                     /* S4670 | selector-type-no-unknown */ +  color: black; +}  @keyframes important1 {    from { @@ -34,4 +37,4 @@ a {    }  } -foo { }                                                       /* S4658 | block-no-empty */
\ No newline at end of file +.class2 { }                                                   /* S4658 | block-no-empty */
\ No newline at end of file diff --git a/its/plugin/projects/issues-project/src/file3.scss b/its/plugin/projects/issues-project/src/file3.scss index 35a9655..65a0392 100644 --- a/its/plugin/projects/issues-project/src/file3.scss +++ b/its/plugin/projects/issues-project/src/file3.scss @@ -24,6 +24,9 @@ a {    color: pink;;                                               /* S1116 | no-extra-semicolons */  } +unknown {                                                     /* S4670 | selector-type-no-unknown */ +  color: black; +}  @keyframes important1 {    from { @@ -34,4 +37,4 @@ a {    }  } -foo { }                                                       /* S4658 | block-no-empty */
\ No newline at end of file +.class2 { }                                                   /* S4658 | block-no-empty */
\ No newline at end of file | 
