blob: 171a7755db8a1dd2034d71f445324a5945e23bd8 [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module.exports = {
'rules' : {
'arrow-spacing' : ['error'],
'brace-style' : ['error', '1tbs'],
'curly' : ['error', 'multi-line', 'consistent'],
'eqeqeq' : ['error', 'always', {'null' : 'ignore'}],
'no-confusing-arrow' : ['error'],
'no-console' : 'off',
'no-throw-literal' : 'off',
'object-shorthand' : ['error', 'always'],
'prefer-const' : ['error', {'destructuring' : 'all'}],
},
};