11 lines
209 B
JavaScript
11 lines
209 B
JavaScript
// SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
module.exports = {
|
|
semi: true,
|
|
trailingComma: "all",
|
|
singleQuote: false,
|
|
printWidth: 120,
|
|
tabWidth: 4,
|
|
};
|