mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
Now that all casper tests have been migrated to puppeteer, there's no need for having casper related things. Removed the casperjs package and removed/replaced casper in few places with puppeteer. Only removed few of them which I'm confident about. Also didn't make any changes in docs as it would be easier to remove them while adding puppeteer docs.
16 lines
284 B
JavaScript
16 lines
284 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
bracketSpacing: false,
|
|
trailingComma: "all",
|
|
overrides: [
|
|
{
|
|
files: ["tsconfig.json"],
|
|
options: {
|
|
parser: "json5",
|
|
quoteProps: "preserve",
|
|
},
|
|
},
|
|
],
|
|
};
|