15 lines
205 B
JavaScript
15 lines
205 B
JavaScript
|
module.exports = {
|
||
|
arrowParens: "always",
|
||
|
bracketSpacing: false,
|
||
|
printWidth: 100,
|
||
|
trailingComma: "es5",
|
||
|
overrides: [
|
||
|
{
|
||
|
files: "*.webmanifest",
|
||
|
options: {
|
||
|
parser: "json",
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|