create-iamturns-app
Version:
App generator for my projects
19 lines (17 loc) • 463 B
JavaScript
// Some settings automatically inherited from .editorconfig
module.exports = {
// Why include an unnecessary character at the end of every line? Break the habit (automatically)!
semi: false,
// Trailing commas help with git merging and conflict resolution
trailingComma: "all",
overrides: [
{
files: ".editorconfig",
options: { parser: "yaml" },
},
{
files: "LICENSE",
options: { parser: "markdown" },
},
],
}