mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-21 16:27:39 -06:00
48 lines
718 B
JavaScript
48 lines
718 B
JavaScript
module.exports = {
|
|
'env': {
|
|
'browser': true,
|
|
'es6': true,
|
|
'amd': true,
|
|
'jasmine': true,
|
|
},
|
|
'extends': [
|
|
'eslint:recommended',
|
|
"plugin:react/recommended",
|
|
],
|
|
'parserOptions': {
|
|
'ecmaFeatures': {
|
|
'experimentalObjectRestSpread': true,
|
|
'jsx': true
|
|
},
|
|
'sourceType': 'module'
|
|
},
|
|
'plugins': [
|
|
'react'
|
|
],
|
|
'globals': {
|
|
'_': true,
|
|
'module': true,
|
|
},
|
|
'rules': {
|
|
'indent': [
|
|
'error',
|
|
2
|
|
],
|
|
'linebreak-style': [
|
|
'error',
|
|
'unix'
|
|
],
|
|
'quotes': [
|
|
'error',
|
|
'single'
|
|
],
|
|
'semi': [
|
|
'error',
|
|
'always'
|
|
],
|
|
'comma-dangle': [
|
|
'error',
|
|
'always-multiline'
|
|
],
|
|
}
|
|
}; |