module.exports = { tabWidth: 4, //todo: is this necessary if we're still using tabs useTabs: true, singleQuote: false, semi: true, bracketSpacing: true, trailingComma: "none", overrides: [ { files: "*.js", options: { parser: "babel" } }, { files: "*.d.ts", options: { semi: false } } ] };