mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
Adding extensive typing support Unified browser and Node.JS implementations Adding support of Gitlab API 16.0
16 lines
222 B
JavaScript
16 lines
222 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
singleQuote: true,
|
|
trailingComma: "all",
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
overrides: [
|
|
{
|
|
files: "*.ts",
|
|
options: {
|
|
parser: "babel-ts"
|
|
}
|
|
}
|
|
]
|
|
}
|