mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
188a40b196
This will be better for future use of JSON.stringify() and JSON.parse() For now the difference between the PHP JSON being PascalCase and the JS object properties being camelCase is handled by AbstractModel
59 lines
1.3 KiB
JavaScript
59 lines
1.3 KiB
JavaScript
module.exports = {
|
|
parser: 'babel-eslint',
|
|
// extends: ['eslint:recommended', 'plugin:prettier/recommended'],
|
|
extends: ['eslint:recommended'],
|
|
plugins: ['prettier'],
|
|
parserOptions: {
|
|
ecmaVersion: 6,
|
|
sourceType: 'module'
|
|
},
|
|
env: {
|
|
node: true,
|
|
browser: true,
|
|
es6: true
|
|
},
|
|
globals: {
|
|
// SnappyMail
|
|
'rainloopI18N': "readonly",
|
|
'rainloopTEMPLATES': "readonly",
|
|
'rl': "readonly",
|
|
'shortcuts': "readonly",
|
|
// '__APP_BOOT': "readonly",
|
|
// deb/boot.js
|
|
'progressJs': "readonly",
|
|
// others
|
|
'openpgp': "readonly",
|
|
'CKEDITOR': "readonly",
|
|
'Squire': "readonly",
|
|
'SquireUI': "readonly",
|
|
// node_modules/knockout but dev/External/ko.js is used
|
|
'ko': "readonly",
|
|
// vendors/routes/
|
|
'hasher': "readonly",
|
|
'signals': "readonly",
|
|
'Crossroads': "readonly",
|
|
// vendors/jua
|
|
'Jua': "readonly",
|
|
// vendors/qr.js
|
|
'qr': "readonly",
|
|
// vendors/bootstrap/bootstrap.native.js
|
|
'BSN': "readonly"
|
|
},
|
|
// http://eslint.org/docs/rules/
|
|
rules: {
|
|
// plugins
|
|
// 'prettier/prettier': 'error',
|
|
'no-mixed-spaces-and-tabs': 'off',
|
|
'max-len': [
|
|
'error',
|
|
120,
|
|
2,
|
|
{
|
|
ignoreComments: true,
|
|
ignoreUrls: true,
|
|
ignoreTrailingComments: true,
|
|
ignorePattern: '(^\\s*(const|let|var)\\s.+=\\s*require\\s*\\(|^import\\s.+\\sfrom\\s.+;$)'
|
|
}
|
|
]
|
|
}
|
|
};
|