-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
52 lines (51 loc) · 1.66 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// This is a workaround for https://github.com/eslint/eslint/issues/3458
require('eslint-config-etherpad/patch/modern-module-resolution');
module.exports = {
root: true,
extends: 'etherpad/plugin',
env: {
browser: true,
node: true,
commonjs: true,
es6: true,
jquery: true,
},
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
},
// rules: {
// 'quotes': [
// 'error',
// 'single',
// { avoidEscape: true, allowTemplateLiterals: true },
// ],
// 'strict': ['error', 'global'],
// 'spaced-comment': ['error', 'always'],
// 'semi': ['error', 'always'],
// 'semi-spacing': ['error', { before: false, after: true }],
// 'no-extra-semi': 'error',
// 'no-unexpected-multiline': 'error',
// 'max-len': ['error', { code: 90 }],
// 'comma-style': ['error', 'last'],
// 'comma-dangle': ['error', 'always-multiline'],
// 'indent': ['error', 2],
// 'space-infix-ops': 'error',
// 'brace-style': 'error',
// 'space-before-blocks': 'error',
// 'keyword-spacing': 'error',
// 'arrow-spacing': 'error',
// 'space-before-function-paren': [
// 'error',
// { anonymous: 'always', named: 'never', asyncArrow: 'always' },
// ],
// 'newline-per-chained-call': 'error',
// 'space-in-parens': ['error', 'never'],
// 'array-bracket-spacing': ['error', 'never'],
// 'object-curly-spacing': ['error', 'always'],
// 'comma-spacing': ['error', { before: false, after: true }],
// 'no-multiple-empty-lines': ['error', { max: 1, maxEOF: 1 }],
// 'no-console': ['error', { allow: ['warn', 'error', 'info'] }],
// 'no-alert': 2,
// },
};