mirror of
https://github.com/thelounge/thelounge.git
synced 2026-03-14 22:45:50 +01:00
* Convert configs to cjs * Fix lint script in package.json * Move babel config to separate file * Combine webpack configs and include babelConfig
14 lines
205 B
JavaScript
14 lines
205 B
JavaScript
module.exports = {
|
|
arrowParens: "always",
|
|
bracketSpacing: false,
|
|
printWidth: 100,
|
|
trailingComma: "es5",
|
|
overrides: [
|
|
{
|
|
files: "*.webmanifest",
|
|
options: {
|
|
parser: "json",
|
|
},
|
|
},
|
|
],
|
|
};
|