We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77a06ce commit 90e74c1Copy full SHA for 90e74c1
packages/cli/src/commands/init/editTemplate.ts
@@ -71,6 +71,7 @@ const UNDERSCORED_DOTFILES = [
71
'gitignore',
72
'prettierrc.js',
73
'watchmanconfig',
74
+ 'editorconfig',
75
];
76
77
function processDotfiles(filePath: string) {
packages/cli/src/tools/generator/copyProjectTemplateAndReplace.ts
@@ -141,6 +141,7 @@ function translateFilePath(filePath: string) {
141
.replace('_gitignore', '.gitignore')
142
.replace('_gitattributes', '.gitattributes')
143
.replace('_babelrc', '.babelrc')
144
+ .replace('_editorconfig', '.editorconfig')
145
.replace('_eslintrc.js', '.eslintrc.js')
146
.replace('_flowconfig', '.flowconfig')
147
.replace('_buckconfig', '.buckconfig')
0 commit comments