Skip to content

Commit d3065cd

Browse files
committed
Fix indentation #6
1 parent b6c5161 commit d3065cd

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

bdd.describe.sublime-snippet

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<snippet>
2-
<content><![CDATA[
2+
<content><![CDATA[
33
describe('${1:description}', function () {
4-
${2:// body...}
4+
${2:// body...}
55
});
66
]]></content>
7-
<tabTrigger>desc</tabTrigger>
8-
<scope>source.js</scope>
9-
<description>BDD describe</description>
7+
<tabTrigger>desc</tabTrigger>
8+
<scope>source.js</scope>
9+
<description>BDD describe</description>
1010
</snippet>

bdd.ita.sublime-snippet

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<snippet>
2-
<content><![CDATA[
2+
<content><![CDATA[
33
it('${1:description}', function (done) {
4-
${2:// body...}
4+
${2:// body...}
55
});
66
]]></content>
7-
<tabTrigger>ita</tabTrigger>
8-
<scope>source.js</scope>
9-
<description>BDD it asynchronous</description>
7+
<tabTrigger>ita</tabTrigger>
8+
<scope>source.js</scope>
9+
<description>BDD it asynchronous</description>
1010
</snippet>

bdd.its.sublime-snippet

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<snippet>
2-
<content><![CDATA[
2+
<content><![CDATA[
33
it('${1:description}', function () {
4-
${2:// body...}
4+
${2:// body...}
55
});
66
]]></content>
7-
<tabTrigger>its</tabTrigger>
8-
<scope>source.js</scope>
9-
<description>BDD it synchronous</description>
7+
<tabTrigger>its</tabTrigger>
8+
<scope>source.js</scope>
9+
<description>BDD it synchronous</description>
1010
</snippet>

for-in.sublime-snippet

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<snippet>
22
<content><![CDATA[
33
for (var ${1:prop} in ${2:obj}) {
4-
if (${2:obj}.hasOwnProperty(${1:prop})) {
5-
${3:// body...}
6-
}
4+
if (${2:obj}.hasOwnProperty(${1:prop})) {
5+
${3:// body...}
6+
}
77
}
88
]]></content>
99
<tabTrigger>fi</tabTrigger>

0 commit comments

Comments
 (0)