node-ff
Version:
A CLI for creating NodeJs projects
29 lines (25 loc) • 498 B
text/typescript
export const editorconfig = `
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
`;
export const prettierrc = `
module.exports = {
\tsemi: true,
\ttabWidth: 2,
\tsingleQuote: true,
\tprintWidth: 80,
\ttrailingComma: 'all'
}
`;
export const vcCodeSettings = {
'editor.codeActionsOnSave': {
'source.fixAll.eslint': true,
'source.fixAll': true,
},
};