Skip to content

Commit fad686b

Browse files
committed
Disabled rule by default
1 parent 42f2f96 commit fad686b

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
This changelog references the relevant changes done between versions.
44

55
To get the diff for a specific change, go to https://github.com/LIN3S/CS/commit/XXX where XXX is the change hash
6-
To get the diff between two versions, go to https://github.com/LIN3S/CS/compare/v0.4.0...v0.5.0
6+
To get the diff between two versions, go to https://github.com/LIN3S/CS/compare/v0.5.0...v0.6.0
77

8+
* 0.6.1
9+
* Disabled `arrow-body-style` rule by default.
810
* 0.6.0
911
* [BC break] Removed scss-lint in favour of Stylelint.
1012
* 0.5.0

src/LIN3S/CS/.eslintrc.js.dist

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
* file that was distributed with this source code.
88
*/
99

10-
'use strict';
11-
1210
module.exports = {
1311
"root": true,
1412
"extends": "eslint:recommended",
@@ -42,7 +40,7 @@ module.exports = {
4240
},
4341
"plugins": [],
4442
"rules": {
45-
"arrow-body-style": ["error", "as-needed"],
43+
"arrow-body-style": "off",
4644
"indent": ["error", 2, {"SwitchCase": 1}],
4745
"linebreak-style": ["error", "unix"],
4846
"semi": ["error", "always"],

src/LIN3S/CS/.stylelintrc.js.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
* file that was distributed with this source code.
88
*/
99

10-
'use strict';
11-
1210
module.exports = {
1311
"plugins": [
1412
"stylelint-order",

0 commit comments

Comments
 (0)