aboutsummaryrefslogtreecommitdiffstats
path: root/packages/service-preload/.eslintrc.cjs
blob: a5421bb6e17897c1dae1f896ba4a6d667c7a548d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  env: {
    node: true,
    browser: true,
  },
  rules: {
    // Using loglevel causes
    // [ERROR:network_service_instance_impl.cc(916)] Network service crashed, restarting service.
    // so we just log to the console instead.
    // See also https://github.com/electron/electron/issues/31833
    'no-console': 'off',
  },
};