-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy path.eslintrc.js
More file actions
28 lines (28 loc) · 666 Bytes
/
.eslintrc.js
File metadata and controls
28 lines (28 loc) · 666 Bytes
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
// module.exports = {
// env: {
// browser: true,
// es6: true,
// },
// extends: ['plugin:react/recommended', 'prettier'],
// globals: {
// Atomics: 'readonly',
// SharedArrayBuffer: 'readonly',
// },
// parserOptions: {
// ecmaFeatures: {
// jsx: true,
// },
// ecmaVersion: 2018,
// sourceType: 'module',
// },
// plugins: [['prettier'], 'react'],
// rules: {
// 'prettier/prettier': 'error',
// 'no-unused-vars': 'warn',
// 'no-console': 'off',
// 'func-names': 'off',
// 'no-process-exit': 'off',
// 'object-shorthand': 'off',
// 'class-methods-use-this': 'off',
// },
// };