list radar timestamps

This commit is contained in:
Matt Walsh
2020-12-29 10:22:20 -06:00
parent 887e0aa676
commit a9d0968e28
3 changed files with 79 additions and 48 deletions

View File

@@ -20,13 +20,9 @@ module.exports = {
'tab',
],
'no-tabs': 0,
'no-use-before-define': 0,
'no-console': 0,
'linebreak-style': [
'error',
'unix',
],
'max-len': 0,
'linebreak-style': 0,
quotes: [
'error',
'single',
@@ -47,6 +43,18 @@ module.exports = {
'no-floating-decimal': ['error'],
'no-trailing-spaces': ['error'],
'brace-style': [2, '1tbs', { allowSingleLine: true }],
'no-mixed-operators': [
'error',
{
groups: [
['&', '|', '^', '~', '<<', '>>', '>>>'],
['==', '!=', '===', '!==', '>', '>=', '<', '<='],
['&&', '||'],
['in', 'instanceof'],
],
allowSamePrecedence: true,
},
],
},
ignorePatterns: [
'*.min.js',