UNPKG

399 BJavaScriptView Raw
1/* eslint-disable import/no-commonjs */
2
3module.exports = {
4 printWidth: 80,
5 tabWidth: 2,
6 useTabs: false,
7 semi: true,
8 singleQuote: false,
9 quoteProps: "as-needed",
10 trailingComma: "all",
11 bracketSpacing: true,
12 arrowParens: "always",
13 proseWrap: "always",
14 endOfLine: "lf",
15 overrides: [
16 {
17 files: "*.js",
18 options: {
19 parser: "meriyah",
20 },
21 },
22 ],
23};