mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-21 16:27:39 -06:00
54 lines
1.0 KiB
JavaScript
54 lines
1.0 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
module.exports = {
|
|
'env': {
|
|
'browser': true,
|
|
'es6': true,
|
|
'amd': true,
|
|
'jasmine': true,
|
|
},
|
|
'extends': [
|
|
'eslint:recommended',
|
|
],
|
|
'parserOptions': {
|
|
'ecmaVersion': 2018,
|
|
"sourceType": "module",
|
|
},
|
|
'globals': {
|
|
'_': true,
|
|
'module': true,
|
|
'process': true,
|
|
'nw': true,
|
|
'platform': true
|
|
},
|
|
'rules': {
|
|
'indent': [
|
|
'error',
|
|
2
|
|
],
|
|
'linebreak-style': 0,
|
|
'quotes': [
|
|
'error',
|
|
'single'
|
|
],
|
|
'semi': [
|
|
'error',
|
|
'always'
|
|
],
|
|
'comma-dangle': [
|
|
'error',
|
|
'always-multiline'
|
|
],
|
|
'no-console': ["error", { allow: ["warn", "error"] }],
|
|
// We need to exclude below for RegEx case
|
|
"no-useless-escape": 0,
|
|
},
|
|
};
|