-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
32 lines (32 loc) · 898 Bytes
/
.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
module.exports = {
"extends": "google",
"parser": "babel-eslint",
"rules": {
"require-jsdoc": ["error", {
"require": {
"FunctionDeclaration": false,
"MethodDefinition": false,
"ClassDeclaration": false,
"ArrowFunctionExpression": false
}
}],
"quotes": "off",
"semi": "off",
"new-cap": "off",
"comma-dangle": "off",
"arrow-parens": ["error", "as-needed"],
"object-curly-spacing": "off",
"camelcase": "off",
"max-len": ["error", 120],
"array-bracket-spacing": "off",
"space-before-blocks": "off",
"space-before-function-paren": "off",
"prefer-spread": "off",
"no-invalid-this": "off"
},
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": false,
"codeFrame": false
}
};