Skip to content

Commit 99d8a44

Browse files
committed
style(): use 4 space indents
1 parent 05fd30c commit 99d8a44

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: templates/app/.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ root = true
99

1010
# Change these settings to your own preference
1111
indent_style = space
12-
indent_size = 2
12+
indent_size = 4
1313

1414
# We recommend you to keep these unchanged
1515
end_of_line = lf

Diff for: templates/app/.eslintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
"id-blacklist": 0, //blacklist certain identifiers to prevent them being used
150150
"id-length": 0, //this option enforces minimum and maximum identifier lengths (variable names, property names etc.)
151151
"id-match": 0, //require identifiers to match the provided regular expression
152-
"indent": ["error", 2], //specify tab or space width for your code
152+
"indent": ["error", 4], //specify tab or space width for your code
153153
"jsx-quotes": 0, //specify whether double or single quotes should be used in JSX attributes
154154
"key-spacing": 2, //enforce spacing between keys and values in object literal properties
155155
"keyword-spacing": [2, {

0 commit comments

Comments
 (0)