Skip to content

Commit c7c6522

Browse files
vdiezclaude
andauthored
JS-942 Fix: Normalize line endings per .gitattributes rules (#5901)
Co-authored-by: Claude <noreply@anthropic.com>
1 parent 4debf05 commit c7c6522

23 files changed

Lines changed: 531 additions & 531 deletions

its/sources/css/custom/S4653.scss

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
$i: 1;
2-
3-
.parent {
4-
width: $i/1.3+px;
5-
height: $i/1.3+0px;
6-
7-
height: $i/1.3*1px; // this is OK and no issue is raised, recommended workaround
8-
}
9-
10-
$ee-icons: (
11-
1gb : "\e06e",
12-
3g : "\e06d",
13-
3gb : "\e06c",
14-
4g : "\e06b",
15-
4gee : "\e06a",
16-
4gee-resumptive : "\e069",
17-
4gee-streaming : "\e068",
18-
)
19-
20-
a { width: 42pixels; } // Noncompliant
1+
$i: 1;
2+
3+
.parent {
4+
width: $i/1.3+px;
5+
height: $i/1.3+0px;
6+
7+
height: $i/1.3*1px; // this is OK and no issue is raised, recommended workaround
8+
}
9+
10+
$ee-icons: (
11+
1gb : "\e06e",
12+
3g : "\e06d",
13+
3gb : "\e06c",
14+
4g : "\e06b",
15+
4gee : "\e06a",
16+
4gee-resumptive : "\e069",
17+
4gee-streaming : "\e068",
18+
)
19+
20+
a { width: 42pixels; } // Noncompliant

its/sources/css/custom/S4654.css

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
a {
2-
colr: blue; /* Noncompliant */
3-
content-visibility: auto; /* No FP */
4-
contain-intrinsic-size: 400px; /* No FP */
5-
}
6-
7-
8-
img {
9-
-ms-interpolation-mode: bicubic; /* No FP */
10-
}
11-
12-
table {
13-
mso-table-lspace: 0pt; /* No FP */
14-
mso-table-rspace: 0pt; /* No FP */
15-
}
16-
17-
p, a, li, td, blockquote {
18-
mso-line-height-rule: exactly; /* No FP */
19-
}
1+
a {
2+
colr: blue; /* Noncompliant */
3+
content-visibility: auto; /* No FP */
4+
contain-intrinsic-size: 400px; /* No FP */
5+
}
6+
7+
8+
img {
9+
-ms-interpolation-mode: bicubic; /* No FP */
10+
}
11+
12+
table {
13+
mso-table-lspace: 0pt; /* No FP */
14+
mso-table-rspace: 0pt; /* No FP */
15+
}
16+
17+
p, a, li, td, blockquote {
18+
mso-line-height-rule: exactly; /* No FP */
19+
}

its/sources/css/custom/S4654.scss

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
$light-blue-10: #c0e7f3;
2-
$light-blue-40: #4bc7e7;
3-
$teal: #23B8A7;
4-
:export {
5-
lightBlue10: $light-blue-10; /* No FP */
6-
lightBlue40: $light-blue-40; /* No FP */
7-
teal: $teal; /* No FP */
8-
}
9-
10-
my-export-class {
11-
lightBlue10: $light-blue-10; /* Noncompliant */
12-
lightBlue40: $light-blue-40; /* Noncompliant */
13-
teal: $teal; /* Noncompliant */
14-
}
1+
$light-blue-10: #c0e7f3;
2+
$light-blue-40: #4bc7e7;
3+
$teal: #23B8A7;
4+
:export {
5+
lightBlue10: $light-blue-10; /* No FP */
6+
lightBlue40: $light-blue-40; /* No FP */
7+
teal: $teal; /* No FP */
8+
}
9+
10+
my-export-class {
11+
lightBlue10: $light-blue-10; /* Noncompliant */
12+
lightBlue40: $light-blue-40; /* Noncompliant */
13+
teal: $teal; /* Noncompliant */
14+
}

its/sources/css/custom/S4670.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
unknown {} /* Noncompliant */
2-
x-Foo {} /* Noncompliant */
3-
x-foo {} /* No FP */
1+
unknown {} /* Noncompliant */
2+
x-Foo {} /* Noncompliant */
3+
x-foo {} /* No FP */

its/sources/css/custom/S5362.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
.foo {
2-
height: calc(100% - (@a-height + @b-margin-top)); /* No FP */
3-
}
1+
.foo {
2+
height: calc(100% - (@a-height + @b-margin-top)); /* No FP */
3+
}

its/sources/css/custom/S5362.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
.foo {
2-
height: calc(100% - ($a-height + $b-margin-top)); /* No FP*/
3-
}
1+
.foo {
2+
height: calc(100% - ($a-height + $b-margin-top)); /* No FP*/
3+
}

its/sources/css/custom/test.css

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
html {
2-
line-height: 1.15; /* 1 */
3-
-webkit-text-size-adjust: 100%; /* 2 */
4-
}
5-
6-
samp {
7-
font-family: monospace, monospace; /* 1 */
8-
font-size: 1em; /* 2 */
9-
}
1+
html {
2+
line-height: 1.15; /* 1 */
3+
-webkit-text-size-adjust: 100%; /* 2 */
4+
}
5+
6+
samp {
7+
font-family: monospace, monospace; /* 1 */
8+
font-size: 1em; /* 2 */
9+
}
Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
Copyright (c) 2016, Daniel Wirtz All rights reserved.
2-
3-
Redistribution and use in source and binary forms, with or without
4-
modification, are permitted provided that the following conditions are
5-
met:
6-
7-
* Redistributions of source code must retain the above copyright
8-
notice, this list of conditions and the following disclaimer.
9-
* Redistributions in binary form must reproduce the above copyright
10-
notice, this list of conditions and the following disclaimer in the
11-
documentation and/or other materials provided with the distribution.
12-
* Neither the name of its author, nor the names of its contributors
13-
may be used to endorse or promote products derived from this software
14-
without specific prior written permission.
15-
16-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20-
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
* Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
* Redistributions in binary form must reproduce the above copyright
10+
notice, this list of conditions and the following disclaimer in the
11+
documentation and/or other materials provided with the distribution.
12+
* Neither the name of its author, nor the names of its contributors
13+
may be used to endorse or promote products derived from this software
14+
without specific prior written permission.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
Copyright (c) 2016, Daniel Wirtz All rights reserved.
2-
3-
Redistribution and use in source and binary forms, with or without
4-
modification, are permitted provided that the following conditions are
5-
met:
6-
7-
* Redistributions of source code must retain the above copyright
8-
notice, this list of conditions and the following disclaimer.
9-
* Redistributions in binary form must reproduce the above copyright
10-
notice, this list of conditions and the following disclaimer in the
11-
documentation and/or other materials provided with the distribution.
12-
* Neither the name of its author, nor the names of its contributors
13-
may be used to endorse or promote products derived from this software
14-
without specific prior written permission.
15-
16-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20-
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
* Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
* Redistributions in binary form must reproduce the above copyright
10+
notice, this list of conditions and the following disclaimer in the
11+
documentation and/or other materials provided with the distribution.
12+
* Neither the name of its author, nor the names of its contributors
13+
may be used to endorse or promote products derived from this software
14+
without specific prior written permission.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
Copyright (c) 2016, Daniel Wirtz All rights reserved.
2-
3-
Redistribution and use in source and binary forms, with or without
4-
modification, are permitted provided that the following conditions are
5-
met:
6-
7-
* Redistributions of source code must retain the above copyright
8-
notice, this list of conditions and the following disclaimer.
9-
* Redistributions in binary form must reproduce the above copyright
10-
notice, this list of conditions and the following disclaimer in the
11-
documentation and/or other materials provided with the distribution.
12-
* Neither the name of its author, nor the names of its contributors
13-
may be used to endorse or promote products derived from this software
14-
without specific prior written permission.
15-
16-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20-
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
* Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
* Redistributions in binary form must reproduce the above copyright
10+
notice, this list of conditions and the following disclaimer in the
11+
documentation and/or other materials provided with the distribution.
12+
* Neither the name of its author, nor the names of its contributors
13+
may be used to endorse or promote products derived from this software
14+
without specific prior written permission.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)