mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-02-10 18:05:10 +08:00
22 lines
466 B
JavaScript
22 lines
466 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
es2021: true,
|
|
},
|
|
extends: ['airbnb-base'],
|
|
overrides: [
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
},
|
|
rules: {
|
|
'max-len': ['error', { code: 120 }],
|
|
'no-console': 'off',
|
|
'no-continue': 'off',
|
|
'no-extend-native': ['error', { exceptions: ['String'] }],
|
|
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
|
|
'no-prototype-builtins': 'off',
|
|
},
|
|
};
|